Ignore:
Timestamp:
Jun 16, 2015, 9:24:36 PM (9 years ago)
Author:
cfuguet
Message:

reconf: introducing a hardware barrier in the global-local interface of
the local interconnects.

  • This barrier is controlled by a port (barrier enable) in the dspin and vci local interconnects.
  • The barrier enable port is connected to a configuration register of the XICU component to allow the software to control this barrier. The barrier is enabled when the barrier enable port value is different of 0xFFFFFFFF. As the configuration register of the XICU component are reset to 0, this barrier is enabled by default.
  • This barrier allows to isolate the cluster from the rest of the architecture and only if it self-diagnoses as functional, it release the barrier to communicate with the others.
  • The same barrier enable signal is connected to the five local interconnects. Therefore, either all are released or all are disabled.
  • If a local initiator or an external initiator sends a packet out or into the cluster respectively, and the barrier is enabled, the packet is dropped.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/reconfiguration/modules/vci_local_crossbar/caba/source/include/vci_local_crossbar.h

    r932 r1001  
    5656    sc_in<bool>                               p_resetn;
    5757
     58    sc_in<uint32_t>                          *p_barrier_enable;
     59
    5860    VciInitiator<vci_param>                  *p_to_target;
    5961    VciTarget<vci_param>                     *p_to_initiator;
     
    9294                                          const size_t                        nb_attached_initiators,
    9395                                          const size_t                        nb_attached_targets,
    94                       const size_t                        default_target_id );
     96                      const size_t                        default_target_id,
     97                      const bool                          hardware_barrier = false );
    9598    ~VciLocalCrossbar();
    9699};
Note: See TracChangeset for help on using the changeset viewer.