1. 21 Mar, 2014 22 commits
    • Pietro Fezzardi's avatar
      arch-sim: added config option "sim_duration_sec" · c70c124a
      Pietro Fezzardi authored
      It sets how much time the simulator should simulate. The default value
      is set to 3600 so that running the simulator without specifying the
      sim_duration_sec option will result in a simulation representing an hour
      of real time
      c70c124a
    • Pietro Fezzardi's avatar
      time-sim: simplified sim_time_get() · 3d49a8c9
      Pietro Fezzardi authored
      3d49a8c9
    • Pietro Fezzardi's avatar
      bd326eef
    • Pietro Fezzardi's avatar
      arch-sim: refactorized net_ops · b07673a4
      Pietro Fezzardi authored
      b07673a4
    • Pietro Fezzardi's avatar
      arch-sim: new standard names for the ifaces · 7cd3719d
      Pietro Fezzardi authored
      This makes the diagnostics easier to understand, printing MASTER and SLAVE
      for every message
      7cd3719d
    • Pietro Fezzardi's avatar
      arch-sim: removed iface dependencies from net_ops · 57c21fd1
      Pietro Fezzardi authored
      Now you can assign the name you want to the interfaces, because it
      doesn't really look for a physical interface with that name. This
      can be useful to make the diagnostics easier to understand
      57c21fd1
    • Pietro Fezzardi's avatar
      arch-sim: changed ports used by the slave · dc463c45
      Pietro Fezzardi authored
      so that you don't need to be administrator to run the simulator and
      you don't have conflicts if there is already a PTP instance running on
      the standard ports
      dc463c45
    • Pietro Fezzardi's avatar
      arch-sim: network operations and main loop · dcddecbc
      Pietro Fezzardi authored
      New struct sim_pending_pkt is introduced to hold information on pakets still in
      fly. An array of such structures is stored in ppg->arch_data. This array is
      written by every send. The insertion is designed to sort automatically the
      packets so that the first element of the array after an insertion is always
      the first packet that will be received. Function sim_fast_forward_ns is changed
      to update also the reception times into this array, so that when you fast
      forward, also the pending packets are fast_forwarded.
      The main loop works in this way:
      	- if there are packets to be received check when
      	- if the first packet to be received is coming before the state machine
      	  timestamps expire, then fast forward till it's time to receive it.
      	  Then receive it and call the state machine of the receiver
      	- if there are no packet pending or the first pending packet is coming
      	  after a timeout, then fast forward till the timeout expires and
      	  run all the state machines
      dcddecbc
    • Pietro Fezzardi's avatar
      arch-sim: config options for net delay · d53137e5
      Pietro Fezzardi authored
      d53137e5
    • Pietro Fezzardi's avatar
      time-sim: added sim_fast_forward_ns · 02bf7e83
      Pietro Fezzardi authored
      It will be used to jump ahead in time when no machine is executing.
      02bf7e83
    • Pietro Fezzardi's avatar
      arch-sim: added sim_defconfig · 202f3e82
      Pietro Fezzardi authored
      202f3e82
    • Pietro Fezzardi's avatar
      arch-sim: added struct pp_sim_net_delay · 8ba0d746
      Pietro Fezzardi authored
      This structure represents all the delays on the outgoing link of
      the pp_instance. It will be used by the network operations
      8ba0d746
    • Pietro Fezzardi's avatar
      arch-sim: added per-arch config options · 17a47301
      Pietro Fezzardi authored
      startup is changed, because we need to set the initial time for the
      master before we set the initial offset from master fo the slave.
      In this way the diagnostics cannot be turned on to print out the
      config for the master. This is not a problem, because the master
      it's not meant to be configurable
      17a47301
    • Pietro Fezzardi's avatar
      arch-sim: new inline functions to select instances · 54eb55be
      Pietro Fezzardi authored
      pp_sim_get_master(ppg) always returns a pointer to master pp_instance.
      pp_sim_get_slave(ppg) always returns a pointer to slave pp_instance.
      pp_sim_is_master(ppi) and pp_sim_is_slave(ppi) are test for obvious
      conditions. these last two can be used only if ppi->glbs != NULL,
      so only if a ppi has been fully initialized.
      54eb55be
    • Pietro Fezzardi's avatar
      c2c1231b
    • Pietro Fezzardi's avatar
      arch-sim: fields added to struct sim_ppi_arch_data · 16b4b4e3
      Pietro Fezzardi authored
      These are namely Data Sets, runtime options, servo and TimeProperties.
      We need them in every instance because we have two ppi (master and slave)
      acting like two different machines, so they need different copies of
      these variables. We just put the per-instance stuff in the arch_data.
      Then we'll change the pointers in the ppg directly in the net operations,
      according to our needs.
      16b4b4e3
    • Pietro Fezzardi's avatar
      time-sim: added time operations · aea3aa29
      Pietro Fezzardi authored
      They're designed to be used for both the instances, master and slave.
      This is possible because the new data structure pp_sim_time_instance
      holding all the information about the time of a single instance is
      placed inside the ppi arch_data
      aea3aa29
    • Pietro Fezzardi's avatar
      arch-sim: new prototype for global arch_data · 44e73697
      Pietro Fezzardi authored
      For now it's the same as arch-unix but it will change
      when we will add more configuration parameters for the
      simulator. So it's better to change its name, from the
      beginning
      44e73697
    • Pietro Fezzardi's avatar
      arch-sim: initial commit with directory tree · 8d898988
      Pietro Fezzardi authored
      Kconfig is updated with new arch.
      It compiles but it's actually doing nothing
      8d898988
    • Pietro Fezzardi's avatar
      config: removed global variables current_ppg and current_ppi · 899ab83e
      Pietro Fezzardi authored
      New prototype for cfg_handler to remove the global variable *current_ppg.
      The current ppg is now passed as argument to the cfg handler as follows:
      
      typedef int (*cfg_handler)(int lineno, struct pp_globals *ppg,
      				union pp_cfg_arg *arg);
      
      New variable added in include/ppsi/pp-instance.h:
      
      struct pp_globals_cfg {
      	int cfg_items;
      	int cur_ppi_n;
      };
      
      Now struct pp_globals has a new field:
      
      struct pp_globals {
      	[...]
      	struct pp_globals_cfg cfg;
      	[...]
      };
      
      The field cfg_items has been moved from pp_globals
      to pp_globals_cfg. The configuration routine uses the field
      cur_ppi_n inside pp_globals_cfg to store the current ppi being
      configured. So neither the global variable *current_ppi is needed
      anymore.
      
      The helper inline function CUR_PPI has been defined to make
      accesses to current ppi more readable.
      899ab83e
    • Grzegorz Daniluk's avatar
      arch-wrs: try connecting to HAL multiple times · 6b84951e
      Grzegorz Daniluk authored
      As it was done also in ptp-noposix. We need to try multiple times
      because sometimes it takes time for HAL to become ready (especially in
      the GrandMaster mode when it has to lock SoftPLL to an ext clock).
      6b84951e
    • Pietro Fezzardi's avatar
      use INST() to access instances everywhere · 0a8e929e
      Pietro Fezzardi authored
      given that INTS() is defined as inline it should not affect
      the performance even in time-critical cases.
      0a8e929e
  2. 02 Mar, 2014 10 commits
  3. 02 Dec, 2013 3 commits
    • Pietro Fezzardi's avatar
      961deb82
    • Pietro Fezzardi's avatar
      lib/conf.c: fix ARG_NONE, factorize code · cd75d6f0
      Pietro Fezzardi authored
      Every case of the switch was colling the cfg_handler out of the
      switch construct, avery time with the same arguments.
      The only case not calling the config function was case ARG_NONE.
      But this doesn't make sense, because if a configuration option
      does not do anything, then it should not be there, even without
      arguments.
      So the call to config function is now made from every case, even
      ARG_NONE, then it should not stay inside the switch.
      cd75d6f0
    • Pietro Fezzardi's avatar
      configuration: added ARG_TIME config argument · 35456ab1
      Pietro Fezzardi authored
      and all the data structures needed to set configuration options
      about time.
      In ppsi.h added struct pp_cfg_time a platform independent timespec-like
      data structure.
      union pp_cfg_arg is extended with a pp_cfg_time field.
      enum pp_argtype is extended with ARG_TIME.
      In lib/conf.c a case ARG_TIME is added to handle it.
      35456ab1
  4. 26 Nov, 2013 2 commits
  5. 18 Nov, 2013 1 commit
  6. 15 Nov, 2013 2 commits