oaisim_functions.c 50 KB
Newer Older
1
/*******************************************************************************
2 3
    OpenAirInterface 
    Copyright(c) 1999 - 2014 Eurecom
4

5 6 7 8
    OpenAirInterface is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.
9 10


11 12 13 14
    OpenAirInterface is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
15

16 17 18 19
    You should have received a copy of the GNU General Public License
    along with OpenAirInterface.The full GNU General Public License is 
    included in this distribution in the file called "COPYING". If not, 
    see <http://www.gnu.org/licenses/>.
20

21 22 23 24 25
   Contact Information
   OpenAirInterface Admin: openair_admin@eurecom.fr
   OpenAirInterface Tech : openair_tech@eurecom.fr
   OpenAirInterface Dev  : openair4g-devel@eurecom.fr
  
ghaddab's avatar
ghaddab committed
26
   Address      : Eurecom, Campus SophiaTech, 450 Route des Chappes, CS 50193 - 06904 Biot Sophia Antipolis cedex, FRANCE
27

28
 *******************************************************************************/
29 30


31 32 33 34
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <signal.h>
35
#include <execinfo.h>
36
#include <time.h>
Lionel Gauthier's avatar
Lionel Gauthier committed
37
#include <mcheck.h>
38
#include <sys/timerfd.h>
39

40
#include "assertions.h"
41 42 43 44 45
#include "oaisim_functions.h"

#include "PHY/extern.h"
#include "MAC_INTERFACE/extern.h"
#include "LAYER2/MAC/extern.h"
46 47 48
#ifdef OPENAIR2
#include "LAYER2/MAC/proto.h"
#endif 
49 50 51
#include "LAYER2/PDCP_v10.1.0/pdcp.h"
#include "LAYER2/PDCP_v10.1.0/pdcp_primitives.h"
#include "RRC/LITE/extern.h"
Cedric Roux's avatar
Cedric Roux committed
52
#include "RRC/L2_INTERFACE/openair_rrc_L2_interface.h"
53 54 55
#include "PHY_INTERFACE/extern.h"
#include "ARCH/CBMIMO1/DEVICE_DRIVER/extern.h"
#include "SCHED/extern.h"
Cedric Roux's avatar
Cedric Roux committed
56
#include "SIMULATION/ETH_TRANSPORT/proto.h"
57 58 59
#include "UTIL/OCG/OCG_extern.h"
#include "UTIL/LOG/vcd_signal_dumper.h"
#include "UTIL/OPT/opt.h"
60
#include "UTIL/OTG/otg_config.h"
winckel's avatar
winckel committed
61
#include "UTIL/OTG/otg_tx.h"
62 63
#include "lteRALenb.h"
#include "lteRALue.h"
64

Cedric Roux's avatar
Cedric Roux committed
65
#include "cor_SF_sim.h"
66
#include "enb_config.h"
Cedric Roux's avatar
Cedric Roux committed
67

68 69 70 71
#if defined(ENABLE_ITTI)
# include "intertask_interface.h"
#endif

72 73 74 75
#if defined(ENABLE_USE_MME)
# include "s1ap_eNB.h"
#endif

76
#ifdef SMBV
77
extern uint8_t config_smbv;
78 79 80 81 82 83 84 85 86
extern char smbv_ip[16];
#endif

//constant for OAISIM soft realtime calibration
#define SF_DEVIATION_OFFSET_NS 100000 //= 0.1ms : should be as a number of UE
#define SLEEP_STEP_US       100 //  = 0.01ms could be adaptive, should be as a number of UE
#define K 2                  // averaging coefficient
#define TARGET_SF_TIME_NS 1000000       // 1ms = 1000000 ns

87 88 89 90 91
int           otg_times             = 0;
int           if_times              = 0;
int           for_times             = 0;

static char  *conf_config_file_name = NULL;
92
uint16_t           Nid_cell              = 0; //needed by init_lte_vars
93
int           nb_antennas_rx        = 2; // //
94 95 96
uint8_t            target_dl_mcs         = 0; // not set
uint8_t            rate_adaptation_flag  = 0;
uint8_t            set_sinr              = 0;
97
double             snr_dB=0, sinr_dB=0;
98 99 100 101
uint8_t            set_seed              = 0;
uint8_t            cooperation_flag;          // for cooperative communication
uint8_t            abstraction_flag      = 0;
uint8_t            ethernet_flag         = 0;
102
double        snr_step              = 1.0;
103
uint8_t            ue_connection_test    = 0;
104
double        forgetting_factor     = 0.0;
105 106 107 108
uint8_t            beta_ACK              = 0;
uint8_t            beta_RI               = 0;
uint8_t            beta_CQI              = 2;
uint8_t            target_ul_mcs         = 4;
Raymond Knopp's avatar
 
Raymond Knopp committed
109
LTE_DL_FRAME_PARMS *frame_parms[MAX_NUM_CCs];
110 111
int           map1,map2;
double      **ShaF                  = NULL;
112
// pointers signal buffers (s = transmit, r,r0 = receive)
113
double      **s_re, **s_im, **r_re, **r_im, **r_re0, **r_im0;
114 115
node_list*     ue_node_list          = NULL;
node_list*     enb_node_list         = NULL;
116
int           omg_period            = 0;
117
int           pdcp_period           = 0;
118

119 120
// time calibration for soft realtime mode
struct timespec time_spec;
121 122 123 124 125
unsigned long   time_last           = 0;
unsigned long   time_now            = 0;
int             td                  = 0;
int             td_avg              = 0;
int             sleep_time_us       = 0;
126 127 128 129 130

#ifdef OPENAIR2
// omv related info
//pid_t omv_pid;
char full_name[200];
131
extern int pfd[2]; // fd for omv : fixme: this could be a local var
132 133 134 135 136 137 138 139 140 141 142 143 144
char fdstr[10];
char frames[10];
char num_enb[10];
char num_ue[10];
//area_x, area_y and area_z for omv
char x_area[20];
char y_area[20];
char z_area[20];
char nb_antenna[20];
char frame_type[10];
char tdd_config[10];
#endif

145
Packet_OTG_List_t *otg_pdcp_buffer = NULL;
146 147 148

extern node_desc_t *enb_data[NUMBER_OF_eNB_MAX];
extern node_desc_t *ue_data[NUMBER_OF_UE_MAX];
Raymond Knopp's avatar
 
Raymond Knopp committed
149 150
extern channel_desc_t *eNB2UE[NUMBER_OF_eNB_MAX][NUMBER_OF_UE_MAX][MAX_NUM_CCs];
extern channel_desc_t *UE2eNB[NUMBER_OF_UE_MAX][NUMBER_OF_eNB_MAX][MAX_NUM_CCs];
151 152

extern mapping small_scale_names[];
Lionel Gauthier's avatar
Lionel Gauthier committed
153 154 155 156
#if defined(Rel10)
extern pdcp_mbms_t pdcp_mbms_array_ue[NUMBER_OF_UE_MAX][maxServiceCount][maxSessionPerPMCH];
extern pdcp_mbms_t pdcp_mbms_array_eNB[NUMBER_OF_eNB_MAX][maxServiceCount][maxSessionPerPMCH];
#endif
157

158 159
extern time_stats_t dl_chan_stats;
extern time_stats_t ul_chan_stats;
160

winckel's avatar
winckel committed
161 162 163
void get_simulation_options(int argc, char *argv[]) {
  int                           option;
  const Enb_properties_array_t *enb_properties;
winckel's avatar
winckel committed
164

winckel's avatar
winckel committed
165
  enum long_option_e {
166
    LONG_OPTION_START = 0x100, /* Start after regular single char options */
winckel's avatar
winckel committed
167

168
    LONG_OPTION_ENB_CONF,
winckel's avatar
winckel committed
169

170 171
    LONG_OPTION_PDNC_PERIOD,
    LONG_OPTION_OMG_PERIOD,
172
    LONG_OPTION_OEH_ENABLED,
winckel's avatar
winckel committed
173

174 175 176 177
    LONG_OPTION_ENB_RAL_LISTENING_PORT,
    LONG_OPTION_ENB_RAL_IP_ADDRESS,
    LONG_OPTION_ENB_RAL_LINK_ID,
    LONG_OPTION_ENB_RAL_LINK_ADDRESS,
winckel's avatar
winckel committed
178

179 180 181
    LONG_OPTION_ENB_MIHF_REMOTE_PORT,
    LONG_OPTION_ENB_MIHF_IP_ADDRESS,
    LONG_OPTION_ENB_MIHF_ID,
winckel's avatar
winckel committed
182

183 184 185 186
    LONG_OPTION_UE_RAL_LISTENING_PORT,
    LONG_OPTION_UE_RAL_IP_ADDRESS,
    LONG_OPTION_UE_RAL_LINK_ID,
    LONG_OPTION_UE_RAL_LINK_ADDRESS,
winckel's avatar
winckel committed
187

188 189 190
    LONG_OPTION_UE_MIHF_REMOTE_PORT,
    LONG_OPTION_UE_MIHF_IP_ADDRESS,
    LONG_OPTION_UE_MIHF_ID,
Lionel Gauthier's avatar
Lionel Gauthier committed
191 192

    LONG_OPTION_MALLOC_TRACE_ENABLED,
winckel's avatar
winckel committed
193
  };
winckel's avatar
winckel committed
194

winckel's avatar
winckel committed
195
  static struct option long_options[] = {
196
      {"enb-conf",               required_argument, 0, LONG_OPTION_ENB_CONF},
winckel's avatar
winckel committed
197

198 199 200
      {"pdcp-period",            required_argument, 0, LONG_OPTION_PDNC_PERIOD},
      {"omg-period",             required_argument, 0, LONG_OPTION_OMG_PERIOD},
      {"oeh-enabled",            no_argument, 0, LONG_OPTION_OEH_ENABLED},
winckel's avatar
winckel committed
201

202 203 204 205
      {"enb-ral-listening-port", required_argument, 0, LONG_OPTION_ENB_RAL_LISTENING_PORT},
      {"enb-ral-ip-address",     required_argument, 0, LONG_OPTION_ENB_RAL_IP_ADDRESS},
      {"enb-ral-link-id",        required_argument, 0, LONG_OPTION_ENB_RAL_LINK_ID},
      {"enb-ral-link-address",   required_argument, 0, LONG_OPTION_ENB_RAL_LINK_ADDRESS},
winckel's avatar
winckel committed
206

207 208 209
      {"enb-mihf-remote-port",   required_argument, 0, LONG_OPTION_ENB_MIHF_REMOTE_PORT},
      {"enb-mihf-ip-address",    required_argument, 0, LONG_OPTION_ENB_MIHF_IP_ADDRESS},
      {"enb-mihf-id",            required_argument, 0, LONG_OPTION_ENB_MIHF_ID},
winckel's avatar
winckel committed
210

211 212 213 214
      {"ue-ral-listening-port",  required_argument, 0, LONG_OPTION_UE_RAL_LISTENING_PORT},
      {"ue-ral-ip-address",      required_argument, 0, LONG_OPTION_UE_RAL_IP_ADDRESS},
      {"ue-ral-link-id",         required_argument, 0, LONG_OPTION_UE_RAL_LINK_ID},
      {"ue-ral-link-address",    required_argument, 0, LONG_OPTION_UE_RAL_LINK_ADDRESS},
winckel's avatar
winckel committed
215

216 217 218
      {"ue-mihf-remote-port",    required_argument, 0, LONG_OPTION_UE_MIHF_REMOTE_PORT},
      {"ue-mihf-ip-address",     required_argument, 0, LONG_OPTION_UE_MIHF_IP_ADDRESS},
      {"ue-mihf-id",             required_argument, 0, LONG_OPTION_UE_MIHF_ID},
219

Lionel Gauthier's avatar
Lionel Gauthier committed
220
      {"malloc-trace-enabled",   no_argument,       0, LONG_OPTION_MALLOC_TRACE_ENABLED},
221
      {NULL, 0, NULL, 0}
winckel's avatar
winckel committed
222
  };
winckel's avatar
winckel committed
223

224
  while ((option = getopt_long (argc, argv, "aA:b:B:c:C:D:d:eE:f:FGg:hHi:IJ:j:k:K:l:L:m:M:n:N:oO:p:P:qQ:rR:s:S:t:T:u:U:vV:w:W:x:X:y:Y:z:Z:", long_options, NULL)) != -1) {
225 226 227 228 229 230 231
      switch (option) {
      case LONG_OPTION_ENB_CONF:
        if (optarg) {
            conf_config_file_name = strdup(optarg);
            printf("eNB configuration file is %s\n", conf_config_file_name);
        }
        break;
winckel's avatar
winckel committed
232

233 234 235 236 237 238
      case LONG_OPTION_PDNC_PERIOD:
        if (optarg) {
            pdcp_period = atoi(optarg);
            printf("PDCP period is %d\n", pdcp_period);
        }
        break;
winckel's avatar
winckel committed
239

240 241 242 243 244 245
      case LONG_OPTION_OMG_PERIOD:
        if (optarg) {
            omg_period = atoi(optarg);
            printf("OMG period is %d\n", omg_period);
        }
        break;
246 247
      
      case LONG_OPTION_OEH_ENABLED:
Lionel Gauthier's avatar
Lionel Gauthier committed
248 249 250 251 252 253 254
	      oai_emulation.info.oeh_enabled = 1;
	    break;

      case LONG_OPTION_MALLOC_TRACE_ENABLED:
    	 mtrace();
	     break;

255
#if defined(ENABLE_RAL)
256 257 258 259 260 261
      case LONG_OPTION_ENB_RAL_LISTENING_PORT:
        if (optarg) {
            g_conf_enb_ral_listening_port = strdup(optarg);
            printf("eNB RAL listening port is %s\n", g_conf_enb_ral_listening_port);
        }
        break;
winckel's avatar
winckel committed
262

263 264 265 266 267 268
      case LONG_OPTION_ENB_RAL_IP_ADDRESS:
        if (optarg) {
            g_conf_enb_ral_ip_address = strdup(optarg);
            printf("eNB RAL IP address is %s\n", g_conf_enb_ral_ip_address);
        }
        break;
winckel's avatar
winckel committed
269

270 271 272 273 274 275
      case LONG_OPTION_ENB_RAL_LINK_ADDRESS:
        if (optarg) {
            g_conf_enb_ral_link_address = strdup(optarg);
            printf("eNB RAL link address is %s\n", g_conf_enb_ral_link_address);
        }
        break;
winckel's avatar
winckel committed
276

277 278 279 280 281 282
      case LONG_OPTION_ENB_RAL_LINK_ID:
        if (optarg) {
            g_conf_enb_ral_link_id = strdup(optarg);
            printf("eNB RAL link id is %s\n", g_conf_enb_ral_link_id);
        }
        break;
winckel's avatar
winckel committed
283

284 285 286 287 288 289
      case LONG_OPTION_ENB_MIHF_REMOTE_PORT:
        if (optarg) {
            g_conf_enb_mihf_remote_port = strdup(optarg);
            printf("eNB MIH-F remote port is %s\n", g_conf_enb_mihf_remote_port);
        }
        break;
winckel's avatar
winckel committed
290

291 292 293 294 295 296
      case LONG_OPTION_ENB_MIHF_IP_ADDRESS:
        if (optarg) {
            g_conf_enb_mihf_ip_address = strdup(optarg);
            printf("eNB MIH-F IP address is %s\n", g_conf_enb_mihf_ip_address);
        }
        break;
winckel's avatar
winckel committed
297

298 299 300 301 302 303
      case LONG_OPTION_ENB_MIHF_ID:
        if (optarg) {
            g_conf_enb_mihf_id = strdup(optarg);
            printf("eNB MIH-F id is %s\n", g_conf_enb_mihf_id);
        }
        break;
winckel's avatar
winckel committed
304

305 306 307 308 309 310
      case LONG_OPTION_UE_RAL_LISTENING_PORT:
        if (optarg) {
            g_conf_ue_ral_listening_port = strdup(optarg);
            printf("UE RAL listening port is %s\n", g_conf_ue_ral_listening_port);
        }
        break;
winckel's avatar
winckel committed
311

312 313 314 315 316 317
      case LONG_OPTION_UE_RAL_IP_ADDRESS:
        if (optarg) {
            g_conf_ue_ral_ip_address = strdup(optarg);
            printf("UE RAL IP address is %s\n", g_conf_ue_ral_ip_address);
        }
        break;
winckel's avatar
winckel committed
318

319 320 321 322 323 324
      case LONG_OPTION_UE_RAL_LINK_ID:
        if (optarg) {
            g_conf_ue_ral_link_id = strdup(optarg);
            printf("UE RAL link id is %s\n", g_conf_ue_ral_link_id);
        }
        break;
winckel's avatar
winckel committed
325

326 327 328 329 330 331
      case LONG_OPTION_UE_RAL_LINK_ADDRESS:
        if (optarg) {
            g_conf_ue_ral_link_address = strdup(optarg);
            printf("UE RAL link address is %s\n", g_conf_ue_ral_link_address);
        }
        break;
winckel's avatar
winckel committed
332

333 334 335 336 337 338
      case LONG_OPTION_UE_MIHF_REMOTE_PORT:
        if (optarg) {
            g_conf_ue_mihf_remote_port = strdup(optarg);
            printf("UE MIH-F remote port is %s\n", g_conf_ue_mihf_remote_port);
        }
        break;
winckel's avatar
winckel committed
339

340 341 342 343 344 345
      case LONG_OPTION_UE_MIHF_IP_ADDRESS:
        if (optarg) {
            g_conf_ue_mihf_ip_address = strdup(optarg);
            printf("UE MIH-F IP address is %s\n", g_conf_ue_mihf_ip_address);
        }
        break;
winckel's avatar
winckel committed
346

347 348 349 350 351 352
      case LONG_OPTION_UE_MIHF_ID:
        if (optarg) {
            g_conf_ue_mihf_id = strdup(optarg);
            printf("UE MIH-F id is %s\n", g_conf_ue_mihf_id);
        }
        break;
353
#endif
winckel's avatar
winckel committed
354

355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
      case 'a':
        abstraction_flag = 1;
        break;

      case 'A':
        //oai_emulation.info.ocm_enabled=1;
        if (optarg == NULL)
          oai_emulation.environment_system_config.fading.small_scale.selected_option="AWGN";
        else
          oai_emulation.environment_system_config.fading.small_scale.selected_option= optarg;
        //awgn_flag = 1;
        break;

      case 'b':
        oai_emulation.info.nb_enb_local = atoi (optarg);
        break;

      case 'B':
        oai_emulation.topology_config.mobility.eNB_mobility.eNB_mobility_type.selected_option = optarg;
        //oai_emulation.info.omg_model_enb = atoi (optarg);
        break;

      case 'c':
        strcpy(oai_emulation.info.local_server, optarg);
        oai_emulation.info.ocg_enabled=1;
        break;

      case 'C':
Raymond Knopp's avatar
 
Raymond Knopp committed
383 384 385
        oai_emulation.info.tdd_config[0] = atoi (optarg);
        AssertFatal (oai_emulation.info.tdd_config[0] <= TDD_Config__subframeAssignment_sa6, "Illegal tdd_config %d (should be 0-%d)!",
            oai_emulation.info.tdd_config[0], TDD_Config__subframeAssignment_sa6);
386 387 388 389 390 391 392
        break;

      case 'D':
        oai_emulation.info.multicast_ifname = strdup(optarg);
        break;

      case 'e':
Raymond Knopp's avatar
 
Raymond Knopp committed
393
        oai_emulation.info.extended_prefix_flag[0] = 1;
394 395 396 397 398 399 400 401 402 403 404 405 406
        break;

      case 'E':
        set_seed = 1;
        oai_emulation.info.seed = atoi (optarg);
        break;

      case 'f':
        forgetting_factor = atof (optarg);
        break;

      case 'F':                   // set FDD
        printf("Setting Frame to FDD\n");
Raymond Knopp's avatar
 
Raymond Knopp committed
407
        oai_emulation.info.frame_type[0] = 0;
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
        break;

      case 'g':
        oai_emulation.info.multicast_group = atoi (optarg);
        break;

      case 'G' :
        oai_emulation.info.otg_bg_traffic_enabled = 1;
        break;

      case 'h':
        help ();
        exit (1);
        break;

      case 'H':
        oai_emulation.info.handover_active=1;
        printf("Activate the handover procedure at RRC\n");
        break;

      case 'i':
winckel's avatar
winckel committed
429
#ifdef PROC
430 431 432
        Process_Flag=1;
        node_id = wgt+atoi(optarg);
        port+=atoi(optarg);
winckel's avatar
winckel committed
433
#endif
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
        break;

      case 'I':
        oai_emulation.info.cli_enabled = 1;
        break;

      case 'j' :
        // number of relay nodes: currently only applicable to eMBMS
        oai_emulation.info.nb_rn_local = atoi (optarg);
        break;

      case 'J':
        ue_connection_test=1;
        oai_emulation.info.ocm_enabled=0;
        snr_step = atof(optarg);
        break;

      case 'k':
        //ricean_factor = atof (optarg);
        printf("[SIM] Option k is no longer supported on the command line. Please specify your channel model in the xml template\n");
winckel's avatar
winckel committed
454
        exit(-1);
455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523
        break;

      case 'K':
        oai_emulation.info.itti_dump_file = optarg;
        break;

      case 'l':
        oai_emulation.info.g_log_level = atoi(optarg);
        break;

      case 'L':                   // set FDD
        flag_LA = atoi(optarg);
        break;

      case 'm':
        target_dl_mcs = atoi (optarg);
        break;

      case 'M':
        abstraction_flag = 1;
        ethernet_flag = 1;
        oai_emulation.info.ethernet_id = atoi (optarg);
        oai_emulation.info.master_id = oai_emulation.info.ethernet_id;
        oai_emulation.info.ethernet_flag = 1;
        break;

      case 'n':
        oai_emulation.info.n_frames = atoi (optarg);
        //n_frames = (n_frames >1024) ? 1024: n_frames; // adjust the n_frames if higher that 1024
        oai_emulation.info.n_frames_flag = 1;
        break;

      case 'N':
        Nid_cell = atoi (optarg);
        if (Nid_cell > 503) {
            printf("Illegal Nid_cell %d (should be 0 ... 503)\n", Nid_cell);
            exit(-1);
        }
        break;

      case 'O':
        conf_config_file_name = optarg;
        break;

      case 'o':
        oai_emulation.info.slot_isr = 1;
        break;

      case 'p':
        oai_emulation.info.nb_master = atoi (optarg);
        break;

      case 'P':
        oai_emulation.info.opt_enabled = 1;

        if (strcmp(optarg, "wireshark") == 0) {
            opt_type = OPT_WIRESHARK;
            printf("Enabling OPT for wireshark\n");
        } else if (strcmp(optarg, "pcap") == 0) {
            opt_type = OPT_PCAP;
            printf("Enabling OPT for pcap\n");
        } else {
            printf("Unrecognized option for OPT module. -> Disabling it\n");
            printf("Possible values are either wireshark or pcap\n");
            opt_type = OPT_NONE;
            oai_emulation.info.opt_enabled = 0;
        }
        oai_emulation.info.opt_mode = opt_type;
        break;
524 525 526 527 528
      case 'q':
        // openair performane profiler 
        oai_emulation.info.opp_enabled = 1; // this var is used for OCG
        opp_enabled = 1; // this is the global var used by oaisim 
        break;
529 530 531 532 533 534 535 536 537 538 539
      case 'Q':
        //eMBMS_active=1;
        // 0 : not used (default), 1: eMBMS and RRC enabled, 2: eMBMS relaying and RRC enabled, 3: eMBMS enabled, RRC disabled, 4: eMBMS relaying enabled, RRC disabled
        oai_emulation.info.eMBMS_active_state = atoi (optarg);
        break;

      case 'r':
        rate_adaptation_flag = 1;
        break;

      case 'R':
Raymond Knopp's avatar
 
Raymond Knopp committed
540 541 542 543
        oai_emulation.info.N_RB_DL[0] = atoi (optarg);
        if ((oai_emulation.info.N_RB_DL[0] != 6) && (oai_emulation.info.N_RB_DL[0] != 15) && (oai_emulation.info.N_RB_DL[0] != 25)
            && (oai_emulation.info.N_RB_DL[0] != 50) && (oai_emulation.info.N_RB_DL[0] != 75) && (oai_emulation.info.N_RB_DL[0] != 100)) {
            printf("Illegal N_RB_DL %d (should be one of 6,15,25,50,75,100)\n", oai_emulation.info.N_RB_DL[0]);
544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560
            exit (-1);
        }
        break;

      case 's':
        snr_dB = atoi (optarg);
        //      set_snr = 1;
        oai_emulation.info.ocm_enabled=0;
        break;

      case 'S':
        sinr_dB = atoi (optarg);
        set_sinr = 1;
        oai_emulation.info.ocm_enabled=0;
        break;

      case 't':
561
        target_ul_mcs = atoi (optarg);
562 563 564 565 566 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
        break;

      case 'T':
        oai_emulation.info.otg_enabled = 1;
        oai_emulation.info.otg_traffic = optarg;
        break;

      case 'u':
        oai_emulation.info.nb_ue_local = atoi (optarg);
        break;

      case 'U':
        oai_emulation.topology_config.mobility.UE_mobility.UE_mobility_type.selected_option = optarg;
        break;

      case 'v':
        oai_emulation.info.omv_enabled = 1;
        break;

      case 'V':
        ouput_vcd = 1;
        oai_emulation.info.vcd_enabled = 1;
        oai_emulation.info.vcd_file = optarg;
        break;

      case 'w':
        oai_emulation.info.cba_group_active = atoi (optarg);
        break;

      case 'W':
592
#ifdef SMBV
593 594 595
        config_smbv = 1;
        if(atoi(optarg)!=0)
          strcpy(smbv_ip,optarg);
596
#endif
597
        break;
winckel's avatar
winckel committed
598

599
      case 'x':
Raymond Knopp's avatar
 
Raymond Knopp committed
600 601
        oai_emulation.info.transmission_mode[0] = atoi (optarg);
        if ((oai_emulation.info.transmission_mode[0] != 1) &&  (oai_emulation.info.transmission_mode[0] != 2) && (oai_emulation.info.transmission_mode[0] != 5) && (oai_emulation.info.transmission_mode[0] != 6)) {
602 603 604 605
            printf("Unsupported transmission mode %d\n",oai_emulation.info.transmission_mode);
            exit(-1);
        }
        break;
winckel's avatar
winckel committed
606

607
      case 'X':
winckel's avatar
winckel committed
608
#ifdef PROC
609 610 611 612 613 614 615 616 617 618
        temp=atoi(optarg);
        if(temp==0){
            port=CHANNEL_PORT; Channel_Flag=1; Process_Flag=0; wgt=0;
        }
        else if(temp==1){
            port=eNB_PORT; wgt=0;
        }
        else {
            port=UE_PORT; wgt=MAX_eNB;
        }
winckel's avatar
winckel committed
619
#endif
620
        break;
winckel's avatar
winckel committed
621

622 623 624 625 626 627 628
      case 'y':
        nb_antennas_rx=atoi(optarg);
        if (nb_antennas_rx>4) {
            printf("Cannot have more than 4 antennas\n");
            exit(-1);
        }
        break;
winckel's avatar
winckel committed
629

630 631 632
      case 'Y':
        oai_emulation.info.g_log_verbosity_option = strdup(optarg);
        break;
winckel's avatar
winckel committed
633

634 635 636
      case 'z':
        cooperation_flag = atoi (optarg);
        break;
winckel's avatar
winckel committed
637

638 639 640
      case 'Z':
        /* Sebastien ROUX: Reserved for future use (currently used in ltenow branch) */
        break;
winckel's avatar
winckel committed
641

642 643 644 645 646
      default:
        help ();
        exit (-1);
        break;
      }
winckel's avatar
winckel committed
647
  }
648 649

  if ((oai_emulation.info.nb_enb_local > 0) && (conf_config_file_name != NULL))
650
    {
651 652 653 654
      /* Read eNB configuration file */
      enb_properties = enb_config_init(conf_config_file_name);

      AssertFatal (oai_emulation.info.nb_enb_local <= enb_properties->number,
655 656
          "Number of eNB is greater than eNB defined in configuration file %s (%d/%d)!",
          conf_config_file_name, oai_emulation.info.nb_enb_local, enb_properties->number);
657 658

      /* Update some simulation parameters */
Raymond Knopp's avatar
 
Raymond Knopp committed
659 660 661 662
      oai_emulation.info.frame_type[0] =           enb_properties->properties[0]->frame_type[0];
      oai_emulation.info.tdd_config[0] =           enb_properties->properties[0]->tdd_config[0];
      oai_emulation.info.tdd_config_S[0] =         enb_properties->properties[0]->tdd_config_s[0];
      oai_emulation.info.extended_prefix_flag[0] = enb_properties->properties[0]->prefix_type[0];
663
    }
664 665
}

666
void check_and_adjust_params(void) {
667

668
  int32_t ret;
669 670
  int i,j;

671
  if (oai_emulation.info.nb_ue_local  + oai_emulation.info.nb_rn_local > NUMBER_OF_UE_MAX) {
672 673
      LOG_E(EMU,"Enter fewer than %d UEs/RNs for the moment or change the NUMBER_OF_UE_MAX\n", NUMBER_OF_UE_MAX);
      exit(EXIT_FAILURE);
674 675
  }

676
  if (oai_emulation.info.nb_enb_local + oai_emulation.info.nb_rn_local > NUMBER_OF_eNB_MAX) {
677 678
      LOG_E(EMU,"Enter fewer than %d eNBs/RNs for the moment or change the NUMBER_OF_UE_MAX\n", NUMBER_OF_eNB_MAX);
      exit(EXIT_FAILURE);
679
  }
680

681
  if (oai_emulation.info.nb_rn_local > NUMBER_OF_RN_MAX) {
682 683
      LOG_E(EMU,"Enter fewer than %d RNs for the moment or change the NUMBER_OF_RN_MAX\n", NUMBER_OF_RN_MAX);
      exit(EXIT_FAILURE);
684
  }
685 686 687 688 689 690 691 692 693 694 695
  // fix ethernet and abstraction with RRC_CELLULAR Flag
#ifdef RRC_CELLULAR
  abstraction_flag = 1;
  ethernet_flag = 1;
#endif

  if (set_sinr == 0)
    sinr_dB = snr_dB - 20;

  // setup netdevice interface (netlink socket)
  LOG_I(EMU,"[INIT] Starting NAS netlink interface\n");
Cedric Roux's avatar
Cedric Roux committed
696
  ret = netlink_init();
697
  if (ret < 0)
698
    LOG_W(EMU,"[INIT] Netlink not available, careful ...\n");
699 700

  if (ethernet_flag == 1) {
701 702 703 704 705 706 707 708 709 710 711 712 713 714 715
      oai_emulation.info.master[oai_emulation.info.master_id].nb_ue = oai_emulation.info.nb_ue_local + oai_emulation.info.nb_rn_local;
      oai_emulation.info.master[oai_emulation.info.master_id].nb_enb = oai_emulation.info.nb_enb_local + oai_emulation.info.nb_rn_local;
      if (oai_emulation.info.nb_rn_local>0)
        LOG_N(EMU,"Ethernet emulation is not yet tested with the relay nodes\n");
      if (!oai_emulation.info.master_id)
        oai_emulation.info.is_primary_master = 1;
      j = 1;
      for (i = 0; i < oai_emulation.info.nb_master; i++) {
          if (i != oai_emulation.info.master_id)
            oai_emulation.info.master_list = oai_emulation.info.master_list + j;
          LOG_I (EMU, "Index of master id i=%d  MASTER_LIST %d\n", i, oai_emulation.info.master_list);
          j *= 2;
      }
      LOG_I (EMU, " Total number of master %d my master id %d\n", oai_emulation.info.nb_master, oai_emulation.info.master_id);
      init_bypass ();
716

717 718 719 720
      while (emu_tx_status != SYNCED_TRANSPORT) {
          LOG_I (EMU, " Waiting for EMU Transport to be synced\n");
          emu_transport_sync ();    //emulation_tx_rx();
      }
721 722
  } // ethernet flag

723
  //
724 725
  NB_UE_INST = oai_emulation.info.nb_ue_local + oai_emulation.info.nb_ue_remote;
  NB_eNB_INST = oai_emulation.info.nb_enb_local + oai_emulation.info.nb_enb_remote;
726 727
  NB_RN_INST = oai_emulation.info.nb_rn_local + oai_emulation.info.nb_rn_remote;

728
#if defined(ENABLE_PDCP_NETLINK_FIFO) && defined(OPENAIR2)
729 730 731
  pdcp_netlink_init();
#endif

732
  if (NB_RN_INST > 0 ) {
733
      LOG_N(EMU,"Total number of RN %d (local %d, remote %d) mobility (the same as eNB) %s  \n", NB_RN_INST,oai_emulation.info.nb_rn_local,oai_emulation.info.nb_rn_remote, oai_emulation.topology_config.mobility.eNB_mobility.eNB_mobility_type.selected_option);
734

735 736 737 738 739
      LOG_N(EMU,"Adjust the number of eNB inst (%d->%d) and UE inst (%d->%d)\n ",
          NB_eNB_INST, NB_eNB_INST+NB_RN_INST,
          NB_UE_INST, NB_UE_INST+NB_RN_INST);
      NB_eNB_INST+=NB_RN_INST;
      NB_UE_INST+=NB_RN_INST;
740
  }
741
  LOG_I(EMU,"Total number of UE %d (first local %d , num local %d, remote %d, relay %d) mobility %s \n",
742 743 744
      NB_UE_INST,oai_emulation.info.first_ue_local, oai_emulation.info.nb_ue_local,oai_emulation.info.nb_ue_remote,
      NB_RN_INST,
      oai_emulation.topology_config.mobility.UE_mobility.UE_mobility_type.selected_option);
745 746

  LOG_I(EMU,"Total number of eNB %d (local %d, remote %d, relay %d) mobility %s \n",
747 748 749
      NB_eNB_INST,oai_emulation.info.nb_enb_local,oai_emulation.info.nb_enb_remote,
      NB_RN_INST,
      oai_emulation.topology_config.mobility.eNB_mobility.eNB_mobility_type.selected_option);
750

751 752
}

753
#ifdef OPENAIR2
754
void init_omv(void) {
755 756
  if (oai_emulation.info.omv_enabled == 1) {

757 758
      if(pipe(pfd) == -1)
        perror("pipe error \n");
759

760 761
      sprintf(full_name, "%s/UTIL/OMV/OMV",getenv("OPENAIR2_DIR"));
      LOG_I(EMU,"Stating the OMV path %s pfd[0] %d pfd[1] %d \n", full_name, pfd[0],pfd[1]);
762

763 764 765 766
      switch(fork()) {
      case -1 :
        perror("fork failed \n");
        break;
767
      case 0 : // child is going to be the omv, it is the reader
768 769 770 771 772 773 774 775 776 777
        if(close(pfd[1]) == -1 ) // we close the write desc.
          perror("close on write\n" );
        sprintf(fdstr, "%d", pfd[0] );
        sprintf(num_enb, "%d", NB_eNB_INST);
        sprintf(num_ue, "%d", NB_UE_INST);
        sprintf(x_area, "%f", oai_emulation.topology_config.area.x_m );
        sprintf(y_area, "%f", oai_emulation.topology_config.area.y_m );
        sprintf(z_area, "%f", 200.0 );
        sprintf(frames, "%d", oai_emulation.info.n_frames);
        sprintf(nb_antenna, "%d", 4);
Raymond Knopp's avatar
 
Raymond Knopp committed
778 779
        sprintf(frame_type, "%s", (oai_emulation.info.frame_type[0] == 0) ? "FDD" : "TDD");
        sprintf(tdd_config, "%d", oai_emulation.info.tdd_config[0]);
780 781 782 783 784 785 786
        // execl is used to launch the visualisor
        execl(full_name,"OMV", fdstr, frames, num_enb, num_ue, x_area, y_area, z_area, nb_antenna, frame_type, tdd_config,NULL );
        perror( "error in execl the OMV" );
      }
      //parent
      if(close( pfd[0] ) == -1 ) // we close the write desc.
        perror("close on read\n" );
787 788
  }
}
789
#endif
790

791
void init_seed(uint8_t set_seed) {
792 793 794

  if(set_seed) {

795 796
      randominit (oai_emulation.info.seed);
      set_taus_seed (oai_emulation.info.seed);
797 798

  } else {
799 800
      randominit (0);
      set_taus_seed (0);
801 802 803
  }
}

804
void init_openair1(void) {
Lionel Gauthier's avatar
Lionel Gauthier committed
805
  module_id_t UE_id, eNB_id;
Raymond Knopp's avatar
 
Raymond Knopp committed
806
  uint8_t CC_id;
807 808 809
#if defined(ENABLE_RAL)
  int list_index;
#endif
810
  // change the nb_connected_eNB
Raymond Knopp's avatar
 
Raymond Knopp committed
811 812 813
  for (CC_id=0;CC_id<MAX_NUM_CCs;CC_id++) {
    init_lte_vars (&frame_parms[CC_id], oai_emulation.info.frame_type[CC_id], oai_emulation.info.tdd_config[CC_id], oai_emulation.info.tdd_config_S[CC_id],oai_emulation.info.extended_prefix_flag[CC_id],oai_emulation.info.N_RB_DL[CC_id], Nid_cell, cooperation_flag, oai_emulation.info.transmission_mode[CC_id], abstraction_flag,nb_antennas_rx, oai_emulation.info.eMBMS_active_state);
  }
814 815 816

  for (eNB_id=0; eNB_id<NB_eNB_INST;eNB_id++){
      for (UE_id=0; UE_id<NB_UE_INST;UE_id++){
Raymond Knopp's avatar
 
Raymond Knopp committed
817 818 819 820
	for (CC_id=0;CC_id<MAX_NUM_CCs;CC_id++) {
          PHY_vars_eNB_g[eNB_id][CC_id]->pusch_config_dedicated[UE_id].betaOffset_ACK_Index = beta_ACK;
          PHY_vars_eNB_g[eNB_id][CC_id]->pusch_config_dedicated[UE_id].betaOffset_RI_Index  = beta_RI;
          PHY_vars_eNB_g[eNB_id][CC_id]->pusch_config_dedicated[UE_id].betaOffset_CQI_Index = beta_CQI;
Raymond Knopp's avatar
 
Raymond Knopp committed
821
          ((PHY_vars_eNB_g[eNB_id][CC_id]->lte_frame_parms).pdsch_config_common).p_b = (frame_parms[CC_id]->nb_antennas_tx_eNB>1) ? 1 : 0; // rho_a = rhob
822 823 824 825
	
	  PHY_vars_UE_g[UE_id][CC_id]->pusch_config_dedicated[eNB_id].betaOffset_ACK_Index = beta_ACK;
	  PHY_vars_UE_g[UE_id][CC_id]->pusch_config_dedicated[eNB_id].betaOffset_RI_Index  = beta_RI;
	  PHY_vars_UE_g[UE_id][CC_id]->pusch_config_dedicated[eNB_id].betaOffset_CQI_Index = beta_CQI;
Raymond Knopp's avatar
 
Raymond Knopp committed
826
	  ((PHY_vars_UE_g[UE_id][CC_id]->lte_frame_parms).pdsch_config_common).p_b = (frame_parms[CC_id]->nb_antennas_tx_eNB>1) ? 1 : 0; // rho_a = rhob
Raymond Knopp's avatar
 
Raymond Knopp committed
827
	}
828 829 830
      }
  }

Raymond Knopp's avatar
 
Raymond Knopp committed
831
  printf ("AFTER init: Nid_cell %d\n", PHY_vars_eNB_g[0][0]->lte_frame_parms.Nid_cell);
832
  printf ("AFTER init: frame_type %d,tdd_config %d\n",
Raymond Knopp's avatar
 
Raymond Knopp committed
833 834
      PHY_vars_eNB_g[0][0]->lte_frame_parms.frame_type,
      PHY_vars_eNB_g[0][0]->lte_frame_parms.tdd_config);
835 836 837 838 839 840 841

  number_of_cards = 1;

  openair_daq_vars.rx_rf_mode = 1;
  openair_daq_vars.tdd = 1;
  openair_daq_vars.rx_gain_mode = DAQ_AGC_ON;

Raymond Knopp's avatar
 
Raymond Knopp committed
842
  openair_daq_vars.dlsch_transmission_mode = oai_emulation.info.transmission_mode[0];
843 844 845 846 847 848 849 850 851

  openair_daq_vars.target_ue_dl_mcs = target_dl_mcs;
  openair_daq_vars.target_ue_ul_mcs = target_ul_mcs;
  openair_daq_vars.ue_dl_rb_alloc=0x1fff;
  openair_daq_vars.ue_ul_nb_rb=6;
  openair_daq_vars.dlsch_rate_adaptation = rate_adaptation_flag;
  openair_daq_vars.use_ia_receiver = 0;

  // init_ue_status();
Raymond Knopp's avatar
 
Raymond Knopp committed
852 853
  for (UE_id=0; UE_id<NB_UE_INST;UE_id++) 
    for (CC_id=0;CC_id<MAX_NUM_CCs;CC_id++){
Raymond Knopp's avatar
 
Raymond Knopp committed
854
      PHY_vars_UE_g[UE_id][CC_id]->rx_total_gain_dB=160;
855 856
      // update UE_mode for each eNB_id not just 0
      if (abstraction_flag == 0)
Raymond Knopp's avatar
 
Raymond Knopp committed
857
        PHY_vars_UE_g[UE_id][CC_id]->UE_mode[0] = NOT_SYNCHED;
858 859
      else {
          // 0 is the index of the connected eNB
Raymond Knopp's avatar
 
Raymond Knopp committed
860
          PHY_vars_UE_g[UE_id][CC_id]->UE_mode[0] = PRACH;
861
      }
Raymond Knopp's avatar
 
Raymond Knopp committed
862 863
      PHY_vars_UE_g[UE_id][CC_id]->lte_ue_pdcch_vars[0]->crnti = 0x1235 + UE_id;
      PHY_vars_UE_g[UE_id][CC_id]->current_dlsch_cqi[0] = 10;
864

Raymond Knopp's avatar
 
Raymond Knopp committed
865
      LOG_I(EMU, "UE %d mode is initialized to %d\n", UE_id, PHY_vars_UE_g[UE_id][CC_id]->UE_mode[0] );
866
#if defined(ENABLE_RAL)
Raymond Knopp's avatar
 
Raymond Knopp committed
867
      PHY_vars_UE_g[UE_id][CC_id]->ral_thresholds_timed = hashtable_create (64, NULL, NULL);
868
      for (list_index = 0; list_index < RAL_LINK_PARAM_GEN_MAX; list_index++) {
Raymond Knopp's avatar
 
Raymond Knopp committed
869
          SLIST_INIT(&PHY_vars_UE_g[UE_id][CC_id]->ral_thresholds_gen_polled[list_index]);
870 871
      }
      for (list_index = 0; list_index < RAL_LINK_PARAM_LTE_MAX; list_index++) {
Raymond Knopp's avatar
 
Raymond Knopp committed
872
          SLIST_INIT(&PHY_vars_UE_g[UE_id][CC_id]->ral_thresholds_lte_polled[list_index]);
873
      }
874 875
#endif

876 877 878
  }
}

879
void init_openair2(void) {
880
#ifdef OPENAIR2
Lionel Gauthier's avatar
Lionel Gauthier committed
881 882
  module_id_t enb_id;
  module_id_t UE_id;
Raymond Knopp's avatar
 
Raymond Knopp committed
883
  int CC_id;
884

Raymond Knopp's avatar
 
Raymond Knopp committed
885 886 887 888 889 890
  for (CC_id=0;CC_id<MAX_NUM_CCs;CC_id++)
    l2_init (&PHY_vars_eNB_g[0][CC_id]->lte_frame_parms,
	     oai_emulation.info.eMBMS_active_state,
	     oai_emulation.info.cba_group_active,
	     oai_emulation.info.handover_active);
  
Lionel Gauthier's avatar
Lionel Gauthier committed
891 892
  for (enb_id = 0; enb_id < NB_eNB_INST; enb_id++)
    mac_xface->mrbch_phy_sync_failure (enb_id, 0, enb_id);
893 894

  if (abstraction_flag == 1) {
895 896
      for (UE_id = 0; UE_id < NB_UE_INST; UE_id++)
        mac_xface->dl_phy_sync_success (UE_id, 0, 0,1);   //UE_id%NB_eNB_INST);
897 898 899
  }

  mac_xface->macphy_exit = exit_fun;
900

901 902 903
#endif
}

904
void init_ocm(void) {
Lionel Gauthier's avatar
Lionel Gauthier committed
905
  module_id_t UE_id, eNB_id;
Raymond Knopp's avatar
 
Raymond Knopp committed
906
  int CC_id;
907
  /* Added for PHY abstraction */
Raymond Knopp's avatar
 
Raymond Knopp committed
908
  LOG_I(OCM,"Running with frame_type %d, Nid_cell %d, N_RB_DL %d, EP %d, mode %d, target dl_mcs %d, rate adaptation %d, nframes %d, abstraction %d, channel %s\n", oai_emulation.info.frame_type[0], Nid_cell, oai_emulation.info.N_RB_DL[0], oai_emulation.info.extended_prefix_flag[0], oai_emulation.info.transmission_mode[0],target_dl_mcs,rate_adaptation_flag,oai_emulation.info.n_frames,abstraction_flag,oai_emulation.environment_system_config.fading.small_scale.selected_option);
909

910
  if (abstraction_flag) {
911

912
      get_beta_map();
913
#ifdef PHY_ABSTRACTION_UL
914
      get_beta_map_up();
915
#endif
916
      get_MIESM_param();
917 918

      //load_pbch_desc();
919
  }
920
  
921 922

  for (eNB_id = 0; eNB_id < NB_eNB_INST; eNB_id++) {
923 924
      enb_data[eNB_id] = (node_desc_t *)malloc(sizeof(node_desc_t));
      init_enb(enb_data[eNB_id],oai_emulation.environment_system_config.antenna.eNB_antenna);
925 926 927
  }

  for (UE_id = 0; UE_id < NB_UE_INST; UE_id++) {
928 929
      ue_data[UE_id] = (node_desc_t *)malloc(sizeof(node_desc_t));
      init_ue(ue_data[UE_id],oai_emulation.environment_system_config.antenna.UE_antenna);
930 931 932 933 934 935
  }

  if ((oai_emulation.info.ocm_enabled == 1)&& (ethernet_flag == 0 ) &&
      (oai_emulation.environment_system_config.fading.shadowing.decorrelation_distance_m>0) &&
      (oai_emulation.environment_system_config.fading.shadowing.variance_dB>0)) {

936 937 938 939
      // init SF map here!!!
      map1 =(int)oai_emulation.topology_config.area.x_m;
      map2 =(int)oai_emulation.topology_config.area.y_m;
      ShaF = init_SF(map1,map2,oai_emulation.environment_system_config.fading.shadowing.decorrelation_distance_m,oai_emulation.environment_system_config.fading.shadowing.variance_dB);
940

941 942
      // size of area to generate shadow fading map
      LOG_D(EMU,"Simulation area x=%f, y=%f\n",
943 944 945 946 947
          oai_emulation.topology_config.area.x_m,
          oai_emulation.topology_config.area.y_m);
  }

  if (abstraction_flag == 0)
Raymond Knopp's avatar
 
Raymond Knopp committed
948
    init_channel_vars (frame_parms[0], &s_re, &s_im, &r_re, &r_im, &r_re0, &r_im0);
949 950 951

  // initialize channel descriptors
  for (eNB_id = 0; eNB_id < NB_eNB_INST; eNB_id++) {
Raymond Knopp's avatar
 
Raymond Knopp committed
952 953 954
    for (UE_id = 0; UE_id < NB_UE_INST; UE_id++) {
      for (CC_id=0;CC_id<MAX_NUM_CCs;CC_id++) {
	LOG_D(OCM,"Initializing channel (%s, %d) from eNB %d to UE %d\n", oai_emulation.environment_system_config.fading.small_scale.selected_option,
955
              map_str_to_int(small_scale_names,oai_emulation.environment_system_config.fading.small_scale.selected_option), eNB_id, UE_id);
956

957
          /* if (oai_emulation.info.transmission_mode == 5)
958 959 960 961 962 963 964 965 966
                    eNB2UE[eNB_id][UE_id] = new_channel_desc_scm(PHY_vars_eNB_g[eNB_id]->lte_frame_parms.nb_antennas_tx,
                                                       PHY_vars_UE_g[UE_id]->lte_frame_parms.nb_antennas_rx,
                                                       (UE_id == 0)? Rice1_corr : Rice1_anticorr,
                                                       oai_emulation.environment_system_config.system_bandwidth_MB,
                                                       forgetting_factor,
                                                       0,
                                                       0);

                else
967 968
           */

Raymond Knopp's avatar
 
Raymond Knopp committed
969 970 971 972 973 974 975 976 977
	eNB2UE[eNB_id][UE_id][CC_id] = new_channel_desc_scm(PHY_vars_eNB_g[eNB_id][CC_id]->lte_frame_parms.nb_antennas_tx,
							    PHY_vars_UE_g[UE_id][CC_id]->lte_frame_parms.nb_antennas_rx,
							    map_str_to_int(small_scale_names,oai_emulation.environment_system_config.fading.small_scale.selected_option),
							    oai_emulation.environment_system_config.system_bandwidth_MB,
							    forgetting_factor,
							    0,
							    0);
	random_channel(eNB2UE[eNB_id][UE_id][CC_id],abstraction_flag);
	LOG_D(OCM,"[SIM] Initializing channel (%s, %d) from UE %d to eNB %d\n", oai_emulation.environment_system_config.fading.small_scale.selected_option,
978
              map_str_to_int(small_scale_names, oai_emulation.environment_system_config.fading.small_scale.selected_option),UE_id, eNB_id);
Raymond Knopp's avatar
 
Raymond Knopp committed
979 980 981 982 983 984 985 986 987 988
	
	UE2eNB[UE_id][eNB_id][CC_id] = new_channel_desc_scm(PHY_vars_UE_g[UE_id][CC_id]->lte_frame_parms.nb_antennas_tx,
							    PHY_vars_eNB_g[eNB_id][CC_id]->lte_frame_parms.nb_antennas_rx,
							    map_str_to_int(small_scale_names, oai_emulation.environment_system_config.fading.small_scale.selected_option),
							    oai_emulation.environment_system_config.system_bandwidth_MB,
							    forgetting_factor,
							    0,
							    0);
	
	random_channel(UE2eNB[UE_id][eNB_id][CC_id],abstraction_flag);
989

990 991
      // to make channel reciprocal uncomment following line instead of previous. However this only works for SISO at the moment. For MIMO the channel would need to be transposed.
      //UE2eNB[UE_id][eNB_id] = eNB2UE[eNB_id][UE_id];
Raymond Knopp's avatar
 
Raymond Knopp committed
992
      }
993 994
    }
  }
995 996
}

997
void init_otg_pdcp_buffer(void) {
Lionel Gauthier's avatar
Lionel Gauthier committed
998
  module_id_t i;
999
  otg_pdcp_buffer = malloc((NB_UE_INST + NB_eNB_INST) * sizeof(Packet_OTG_List_t));
1000 1001

  for (i = 0; i < NB_UE_INST + NB_eNB_INST; i++) {
1002 1003
      pkt_list_init(&(otg_pdcp_buffer[i]));
      //LOG_I(EMU,"HEAD of otg_pdcp_buffer[%d] is %p\n", i, pkt_list_get_head(&(otg_pdcp_buffer[i])));
1004 1005 1006
  }
}

1007
void update_omg (frame_t frameP) {
Lionel Gauthier's avatar
Lionel Gauthier committed
1008
  module_id_t UE_id, eNB_id;
1009 1010
  int new_omg_model;

1011
  if ((frameP % omg_period) == 0 ) { // call OMG every 10ms
1012
      update_nodes(oai_emulation.info.time_s);
1013 1014
      display_node_list(enb_node_list);
      display_node_list(ue_node_list);
1015 1016
      if (oai_emulation.info.omg_model_ue >= MAX_NUM_MOB_TYPES){ // mix mobility model
          for(UE_id=oai_emulation.info.first_ue_local; UE_id<(oai_emulation.info.first_ue_local+oai_emulation.info.nb_ue_local);UE_id++){
1017
              new_omg_model = randomgen(STATIC,RWALK);
1018 1019 1020 1021
              LOG_D(OMG, "[UE] Node of ID %d is changing mobility generator ->%d \n", UE_id, new_omg_model);
              // reset the mobility model for a specific node
              set_new_mob_type (UE_id, UE, new_omg_model, oai_emulation.info.time_s);
          }
1022 1023
      }

1024 1025
      if (oai_emulation.info.omg_model_enb >= MAX_NUM_MOB_TYPES) {      // mix mobility model
          for (eNB_id = oai_emulation.info.first_enb_local; eNB_id < (oai_emulation.info.first_enb_local + oai_emulation.info.nb_enb_local); eNB_id++) {
1026
              new_omg_model = randomgen (STATIC, RWALK);
1027 1028 1029 1030
              LOG_D (OMG,"[eNB] Node of ID %d is changing mobility generator ->%d \n", eNB_id, new_omg_model);
              // reset the mobility model for a specific node
              set_new_mob_type (eNB_id, eNB, new_omg_model, oai_emulation.info.time_s);
          }
1031 1032 1033 1034 1035
      }
  }
}

void update_omg_ocm() {
1036 1037 1038 1039
 
 enb_node_list=get_current_positions(oai_emulation.info.omg_model_enb, eNB, oai_emulation.info.time_s);
 ue_node_list=get_current_positions(oai_emulation.info.omg_model_ue, UE, oai_emulation.info.time_s);

1040 1041 1042
}

void update_ocm() {
Lionel Gauthier's avatar
Lionel Gauthier committed
1043
  module_id_t UE_id, eNB_id;
Raymond Knopp's avatar
 
Raymond Knopp committed
1044 1045
  int CC_id;

1046
  for (eNB_id = 0; eNB_id < NB_eNB_INST; eNB_id++)
Raymond Knopp's avatar
 
Raymond Knopp committed
1047
    enb_data[eNB_id]->tx_power_dBm = PHY_vars_eNB_g[eNB_id][0]->lte_frame_parms.pdsch_config_common.referenceSignalPower;
1048
  for (UE_id = 0; UE_id < NB_UE_INST; UE_id++)
Raymond Knopp's avatar
 
Raymond Knopp committed
1049 1050
    ue_data[UE_id]->tx_power_dBm = PHY_vars_UE_g[UE_id][0]->tx_power_dBm;
  
1051 1052 1053

  /* check if the openair channel model is activated used for PHY abstraction : path loss*/
  if ((oai_emulation.info.ocm_enabled == 1)&& (ethernet_flag == 0 )) {
1054
      //LOG_D(OMG," extracting position of eNb...\n");
1055 1056
    //display_node_list(enb_node_list);
    //  display_node_list(ue_node_list);
1057 1058 1059 1060
      extract_position(enb_node_list, enb_data, NB_eNB_INST);
      //extract_position_fixed_enb(enb_data, NB_eNB_INST,frame);
      //LOG_D(OMG," extracting position of UE...\n");
      //      if (oai_emulation.info.omg_model_ue == TRACE)
Raymond Knopp's avatar
 
Raymond Knopp committed
1061 1062 1063 1064 1065 1066
    extract_position(ue_node_list, ue_data, NB_UE_INST);
    
    /* if (frame % 50 == 0)
       LOG_N(OCM,"Path loss for TTI %d : \n", frame);
    */
    for (CC_id=0;CC_id<MAX_NUM_CCs;CC_id++) {
1067
      for (eNB_id = 0; eNB_id < NB_eNB_INST; eNB_id++) {
Raymond Knopp's avatar
 
Raymond Knopp committed
1068 1069 1070 1071 1072 1073 1074 1075 1076
	for (UE_id = 0; UE_id < NB_UE_INST; UE_id++) {
	  calc_path_loss (enb_data[eNB_id], ue_data[UE_id], eNB2UE[eNB_id][UE_id][CC_id], oai_emulation.environment_system_config,ShaF);
	  //calc_path_loss (enb_data[eNB_id], ue_data[UE_id], eNB2UE[eNB_id][UE_id], oai_emulation.environment_system_config,0);
	  UE2eNB[UE_id][eNB_id][CC_id]->path_loss_dB = eNB2UE[eNB_id][UE_id][CC_id]->path_loss_dB;
	  //    if (frame % 50 == 0)
	  LOG_I(OCM,"Path loss (CCid %d) between eNB %d at (%f,%f) and UE %d at (%f,%f) is %f, angle %f\n",
		CC_id,eNB_id,enb_data[eNB_id]->x,enb_data[eNB_id]->y,UE_id,ue_data[UE_id]->x,ue_data[UE_id]->y,
		eNB2UE[eNB_id][UE_id][CC_id]->path_loss_dB, eNB2UE[eNB_id][UE_id][CC_id]->aoa);
	}
1077
      }
Raymond Knopp's avatar
 
Raymond Knopp committed
1078 1079
    }
  }  
1080 1081

  else {
Raymond Knopp's avatar
 
Raymond Knopp committed
1082
    for (CC_id=0;CC_id<MAX_NUM_CCs;CC_id++) {
1083
      for (eNB_id = 0; eNB_id < NB_eNB_INST; eNB_id++) {
Raymond Knopp's avatar
 
Raymond Knopp committed
1084 1085
	for (UE_id = 0; UE_id < NB_UE_INST; UE_id++) {
	  
Raymond Knopp's avatar
 
Raymond Knopp committed
1086
	  //pathloss: -132.24 dBm/15kHz RE + target SNR - eNB TX power per RE
Raymond Knopp's avatar
 
Raymond Knopp committed
1087
	  if (eNB_id == (UE_id % NB_eNB_INST)) {
Raymond Knopp's avatar
 
Raymond Knopp committed
1088 1089
	    eNB2UE[eNB_id][UE_id][CC_id]->path_loss_dB = -132.24 + snr_dB - PHY_vars_eNB_g[eNB_id][CC_id]->lte_frame_parms.pdsch_config_common.referenceSignalPower;
	    UE2eNB[UE_id][eNB_id][CC_id]->path_loss_dB = -132.24 + snr_dB - PHY_vars_eNB_g[eNB_id][CC_id]->lte_frame_parms.pdsch_config_common.referenceSignalPower; //+20 to offset the difference in tx power of the UE wrt eNB
Raymond Knopp's avatar
 
Raymond Knopp committed
1090 1091
	  }
	  else {
Raymond Knopp's avatar
 
Raymond Knopp committed
1092 1093
	    eNB2UE[eNB_id][UE_id][CC_id]->path_loss_dB = -132.24 + sinr_dB - PHY_vars_eNB_g[eNB_id][CC_id]->lte_frame_parms.pdsch_config_common.referenceSignalPower;
	    UE2eNB[UE_id][eNB_id][CC_id]->path_loss_dB = -132.24 + sinr_dB - PHY_vars_eNB_g[eNB_id][CC_id]->lte_frame_parms.pdsch_config_common.referenceSignalPower;
Raymond Knopp's avatar
 
Raymond Knopp committed
1094 1095 1096 1097 1098 1099
	  }
	  LOG_I(OCM,"Path loss from eNB %d to UE %d (CCid %d)=> %f dB (eNB TX %d)\n",eNB_id,UE_id,CC_id,
		eNB2UE[eNB_id][UE_id][CC_id]->path_loss_dB,
		PHY_vars_eNB_g[eNB_id][CC_id]->lte_frame_parms.pdsch_config_common.referenceSignalPower);
	  //      printf("[SIM] Path loss from UE %d to eNB %d => %f dB\n",UE_id,eNB_id,UE2eNB[UE_id][eNB_id]->path_loss_dB);
	}
1100
      }
Raymond Knopp's avatar
 
Raymond Knopp committed
1101
    }
1102 1103 1104
  }
}

1105
#ifdef OPENAIR2
Lionel Gauthier's avatar
Lionel Gauthier committed
1106
void update_otg_eNB(module_id_t enb_module_idP, unsigned int ctime) {
1107
#if defined(USER_MODE) && defined(OAI_EMU)
1108 1109
  if (oai_emulation.info.otg_enabled ==1 ) {

1110
      int dst_id, app_id;
1111
      Packet_otg_elt_t *otg_pkt;
1112 1113 1114 1115

      for (dst_id = 0; dst_id < NUMBER_OF_UE_MAX; dst_id++) {
          for_times += 1;
          // generate traffic if the ue is rrc reconfigured state
Lionel Gauthier's avatar
Lionel Gauthier committed
1116
          if (mac_get_rrc_status(enb_module_idP, ENB_FLAG_YES, dst_id) > 2 /*RRC_CONNECTED*/ ) {
Navid Nikaein's avatar
Navid Nikaein committed
1117
	    if_times += 1;
1118
              for (app_id=0; app_id<MAX_NUM_APPLICATION; app_id++){
1119
                  otg_pkt = malloc (sizeof(Packet_otg_elt_t));
Navid Nikaein's avatar
Navid Nikaein committed
1120
                 
1121

1122
                  (otg_pkt->otg_pkt).sdu_buffer = (uint8_t*) packet_gen(enb_module_idP, dst_id + NB_eNB_INST, app_id, ctime, &((otg_pkt->otg_pkt).sdu_buffer_size));
1123 1124 1125

                  if ((otg_pkt->otg_pkt).sdu_buffer != NULL) {
                      otg_times += 1;
1126
                      (otg_pkt->otg_pkt).rb_id = DTCH-2; // app could be binded to a given DRB
Lionel Gauthier's avatar
Lionel Gauthier committed
1127
                      (otg_pkt->otg_pkt).module_id = enb_module_idP;
1128 1129
                      (otg_pkt->otg_pkt).dst_id = dst_id;
                      (otg_pkt->otg_pkt).is_ue = 0;
1130
                      (otg_pkt->otg_pkt).mode = PDCP_TRANSMISSION_MODE_DATA;
1131
                      //Adding the packet to the OTG-PDCP buffer
1132
#warning "Strange code: To be verifed"
Lionel Gauthier's avatar
Lionel Gauthier committed
1133
                      pkt_list_add_tail_eurecom(otg_pkt, &(otg_pdcp_buffer[enb_module_idP]));
1134
                      LOG_I(EMU,"[eNB %d] ADD pkt to OTG buffer with size %d for dst %d on rb_id %d for app id %d \n",
1135 1136 1137 1138 1139 1140 1141
                          (otg_pkt->otg_pkt).module_id, otg_pkt->otg_pkt.sdu_buffer_size, (otg_pkt->otg_pkt).dst_id,(otg_pkt->otg_pkt).rb_id, app_id);
                  } else {
                      free(otg_pkt);
                      otg_pkt=NULL;
                  }
              }
          }
1142 1143 1144
      }

#ifdef Rel10
Lionel Gauthier's avatar
Lionel Gauthier committed
1145 1146 1147
      mbms_service_id_t service_id;
      mbms_session_id_t session_id;
      rb_id_t           rb_id;
1148 1149
      // MBSM multicast traffic
      // if (frame >= 50) {// only generate when UE can receive MTCH (need to control this value)
1150
      for (service_id = 0; service_id < 2 ; service_id++) { //maxServiceCount
1151
          for (session_id = 0; session_id < 2; session_id++) { // maxSessionPerPMCH
1152
              if (pdcp_mbms_array_eNB[enb_module_idP][service_id][session_id].instanciated_instance == TRUE){ // this service/session is configured
1153

1154
                  otg_pkt = malloc (sizeof(Packet_otg_elt_t));
1155
                  // LOG_T(OTG,"multicast packet gen for (service/mch %d, session/lcid %d, rb_id %d)\n", service_id, session_id, service_id*maxSessionPerPMCH + session_id);
Lionel Gauthier's avatar
Lionel Gauthier committed
1156
                  rb_id = pdcp_mbms_array_eNB[enb_module_idP][service_id][session_id].rb_id;
1157
                  (otg_pkt->otg_pkt).sdu_buffer = (uint8_t*) packet_gen_multicast(enb_module_idP, session_id, ctime, &((otg_pkt->otg_pkt).sdu_buffer_size));
1158
                  if ((otg_pkt->otg_pkt).sdu_buffer != NULL) {
1159 1160 1161 1162
                      (otg_pkt->otg_pkt).rb_id      = rb_id;
                      (otg_pkt->otg_pkt).module_id  = enb_module_idP;
                      (otg_pkt->otg_pkt).dst_id     = session_id;
                      (otg_pkt->otg_pkt).is_ue      = FALSE;
1163
                      //Adding the packet to the OTG-PDCP buffer
1164
                      (otg_pkt->otg_pkt).mode       = PDCP_TRANSMISSION_MODE_TRANSPARENT;
Lionel Gauthier's avatar
Lionel Gauthier committed
1165
                      pkt_list_add_tail_eurecom(otg_pkt, &(otg_pdcp_buffer[enb_module_idP]));
1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176
                      LOG_I(EMU, "[eNB %d] ADD packet (%p) multicast to OTG buffer for dst %d on rb_id %d\n",
                          (otg_pkt->otg_pkt).module_id, otg_pkt, (otg_pkt->otg_pkt).dst_id,(otg_pkt->otg_pkt).rb_id);
                  } else {
                      //LOG_I(EMU, "OTG returns null \n");
                      free(otg_pkt);
                      otg_pkt=NULL;
                  }


                  // old version
                  /*	    // MBSM multicast traffic
1177 1178 1179 1180 1181
#ifdef Rel10
	    if (frame >= 46) {// only generate when UE can receive MTCH (need to control this value)
	      for (service_id = 0; service_id < 2 ; service_id++) { //maxServiceCount
		for (session_id = 0; session_id < 2; session_id++) { // maxSessionPerPMCH
		  //   LOG_I(OTG,"DUY:frame %d, pdcp_mbms_array[module_id][rb_id].instanciated_instance is %d\n",frame,pdcp_mbms_array[module_id][service_id*maxSessionPerPMCH + session_id].instanciated_instance);
1182
		  if ((pdcp_mbms_array[module_idP][service_id*maxSessionPerPMCH + session_id].instanciated_instance== module_idP + 1) && (eNB_flag == 1)){ // this service/session is configured
1183 1184 1185 1186 1187
		    // LOG_T(OTG,"multicast packet gen for (service/mch %d, session/lcid %d)\n", service_id, session_id);
		    // Duy add
		    LOG_I(OTG, "frame %d, multicast packet gen for (service/mch %d, session/lcid %d, rb_id %d)\n",frame, service_id, session_id,service_id*maxSessionPerPMCH + session_id);
		    // end Duy add
		    rb_id = pdcp_mbms_array[module_id][service_id*maxSessionPerPMCH + session_id].rb_id;
1188
		    otg_pkt=(uint8_t*) packet_gen_multicast(module_idP, session_id, ctime, &pkt_size);
1189
		    if (otg_pkt != NULL) {
1190
		      LOG_D(OTG,"[eNB %d] sending a multicast packet from module %d on rab id %d (src %d, dst %d) pkt size %d\n", eNB_index, module_idP, rb_id, module_idP, session_id, pkt_size);
1191 1192 1193 1194 1195 1196 1197
		      pdcp_data_req(module_id, frame, eNB_flag, rb_id, RLC_MUI_UNDEFINED, RLC_SDU_CONFIRM_NO, pkt_size, otg_pkt,PDCP_TM);
		      free(otg_pkt);
		    }
		  }
		}
	      }
	    } // end multicast traffic
1198
#endif
1199
                   */
1200

1201

1202 1203
              }
          }
1204 1205
      }
      //    } // end multicast traffic
1206
#endif
1207 1208 1209
  }
#else
  if (otg_enabled==1) {
1210 1211 1212
      ctime = frame * 100;
      for (dst_id = 0; dst_id < NUMBER_OF_UE_MAX; dst_id++) {
          if (mac_get_rrc_status(eNB_index, eNB_flag, dst_id ) > 2) {
1213
              otg_pkt = malloc (sizeof(Packet_otg_elt_t));
1214 1215
              (otg_pkt->otg_pkt).sdu_buffer = packet_gen(module_instP, dst_id, ctime, &pkt_size);
              if (otg_pkt != NULL) {
1216
                  rb_id = DTCH-2;
1217
                  (otg_pkt->otg_pkt).rb_id     = rb_id;
1218
                  (otg_pkt->otg_pkt).module_id = module_idP;
1219 1220
                  (otg_pkt->otg_pkt).is_ue     = FALSE;
                  (otg_pkt->otg_pkt).mode      = PDCP_TRANSMISSION_MODE_DATA;
1221
                  //Adding the packet to the OTG-PDCP buffer
1222
                  pkt_list_add_tail_eurecom(otg_pkt, &(otg_pdcp_buffer[module_idP]));
1223 1224 1225 1226 1227 1228 1229 1230
                  LOG_I(EMU, "[eNB %d] ADD pkt to OTG buffer for dst %d on rb_id %d\n", (otg_pkt->otg_pkt).module_id, (otg_pkt->otg_pkt).dst_id,(otg_pkt->otg_pkt).rb_id);
              } else {
                  //LOG_I(EMU, "OTG returns null \n");
                  free(otg_pkt);
                  otg_pkt=NULL;
              }
          }
      }
1231 1232 1233 1234
  }
#endif
}

1235
void update_otg_UE(module_id_t ue_mod_idP, unsigned int ctime) {
Cedric Roux's avatar
Cedric Roux committed
1236
#if defined(USER_MODE) && defined(OAI_EMU)
1237
  if (oai_emulation.info.otg_enabled ==1 ) {
1238 1239 1240 1241 1242 1243 1244
      module_id_t dst_id, src_id; //dst_id = eNB_index
      module_id_t module_id = ue_mod_idP+NB_eNB_INST;

      src_id = module_id;

      for (dst_id=0;dst_id<NUMBER_OF_eNB_MAX;dst_id++) {
          if (mac_get_rrc_status(ue_mod_idP, 0, dst_id ) > 2 /*RRC_CONNECTED*/) {
1245
              Packet_otg_elt_t *otg_pkt = malloc (sizeof(Packet_otg_elt_t));
1246
              if (otg_pkt!=NULL)
1247
                memset(otg_pkt,0,sizeof(Packet_otg_elt_t));
1248 1249 1250 1251
              else {
                  LOG_E(OTG,"not enough memory\n");
                  exit(-1);
              }// Manage to add this packet to the tail of your list
1252
              (otg_pkt->otg_pkt).sdu_buffer = (uint8_t*) packet_gen(src_id, dst_id, 0, ctime, &((otg_pkt->otg_pkt).sdu_buffer_size));
1253 1254

              if ((otg_pkt->otg_pkt).sdu_buffer != NULL) {
1255
                  (otg_pkt->otg_pkt).rb_id     = DTCH-2;
1256 1257 1258 1259
                  (otg_pkt->otg_pkt).module_id = module_id;
                  (otg_pkt->otg_pkt).dst_id    = dst_id;
                  (otg_pkt->otg_pkt).is_ue     = 1;
                  //Adding the packet to the OTG-PDCP buffer
1260
                  (otg_pkt->otg_pkt).mode      = PDCP_TRANSMISSION_MODE_DATA;
1261 1262 1263 1264 1265 1266 1267 1268
                  pkt_list_add_tail_eurecom(otg_pkt, &(otg_pdcp_buffer[module_id]));
                  LOG_I(EMU, "[UE %d] ADD pkt to OTG buffer with size %d for dst %d on rb_id %d \n",
                      (otg_pkt->otg_pkt).module_id, otg_pkt->otg_pkt.sdu_buffer_size, (otg_pkt->otg_pkt).dst_id,(otg_pkt->otg_pkt).rb_id);
              } else {
                  free(otg_pkt);
                  otg_pkt=NULL;
              }
          }
1269 1270 1271 1272
      }
  }
#endif
}
1273
#endif
1274

1275 1276
int init_slot_isr(void)
{
1277 1278
  if (oai_emulation.info.slot_isr) {
      struct itimerspec its;
1279

1280
      int sfd;
1281

1282 1283 1284 1285 1286
      sfd = timerfd_create(CLOCK_REALTIME, 0);
      if (sfd == -1) {
          LOG_E(EMU, "Failed in timerfd_create (%d:%s)\n", errno, strerror(errno));
          exit(EXIT_FAILURE);
      }
1287

1288 1289 1290 1291 1292
      /* Start the timer */
      its.it_value.tv_sec = 0;
      its.it_value.tv_nsec = 500 * 1000;
      its.it_interval.tv_sec = its.it_value.tv_sec;
      its.it_interval.tv_nsec = its.it_value.tv_nsec;
1293

1294 1295 1296 1297
      if (timerfd_settime(sfd, TFD_TIMER_ABSTIME, &its, NULL) == -1) {
          LOG_E(EMU, "Failed in timer_settime (%d:%s)\n", errno, strerror(errno));
          exit(EXIT_FAILURE);
      }
1298

1299 1300 1301
      oai_emulation.info.slot_sfd = sfd;
  }
  return 0;
1302 1303 1304 1305
}

void wait_for_slot_isr(void)
{
1306 1307
  uint64_t exp;
  ssize_t res;
1308

1309 1310
  if (oai_emulation.info.slot_sfd > 0) {
      res = read(oai_emulation.info.slot_sfd, &exp, sizeof(exp));
1311

1312 1313 1314 1315 1316
      if ((res < 0) || (res != sizeof(exp))) {
          LOG_E(EMU, "Failed in read (%d:%s)\n", errno, strerror(errno));
          exit(EXIT_FAILURE);
      }
  }
1317 1318
}

1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332
void exit_fun(const char* s)
{
  void *array[10];
  size_t size;

  size = backtrace(array, 10);
  backtrace_symbols_fd(array, size, 2);

  fprintf(stderr, "Error: %s. Exiting!\n",s);
  exit (-1);
}

void init_time() {
  clock_gettime (CLOCK_REALTIME, &time_spec);
1333 1334
  time_now      = (unsigned long) time_spec.tv_nsec;
  td_avg        = 0;
1335
  sleep_time_us = SLEEP_STEP_US;
1336
  td_avg        = TARGET_SF_TIME_NS;
1337 1338
}