Ignore:
Timestamp:
Sep 14, 2015, 9:42:15 AM (9 years ago)
Author:
cfuguet
Message:

reconf: when a local router in a cluster is faulty, the cores are kept
deactivated.

  • In the physical implementation this is achieved with the hardware reset signal. This signal is masked with the GO signals of the NoC BIST. Only when all the local routers pass the BIST, the reset signal of the cores is deasserted.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/reconfiguration/platforms/tsar_generic_iob/tsar_iob_cluster/caba/source/src/tsar_iob_cluster.cpp

    r1001 r1015  
    8080
    8181        bool                               distboot,
     82        bool                               disable_procs,
    8283
    8384        const Loader                       &loader,
     
    9495            p_clk("clk"),
    9596            p_resetn("resetn"),
    96             p_false("false")
     97            p_false("false"),
     98            m_nb_procs(nb_procs),
     99            m_disable_procs(disable_procs)
    97100{
    98101
     
    124127
    125128    ////////////  PROCS
    126     for (size_t p = 0; p < nb_procs; p++)
     129    for (size_t p = 0; p < nb_procs && !m_disable_procs; p++)
    127130    {
    128131        std::ostringstream s_proc;
     
    539542
    540543    //////////////////////////////////// Processors
    541     for (size_t p = 0; p < nb_procs; p++)
     544    for (size_t p = 0; p < nb_procs && !m_disable_procs; p++)
    542545    {
    543546        proc[p]->p_clk                           (this->p_clk);
     
    692695tmpl(void)::init()
    693696{
    694    signal_ram_dspin_cmd_false.write = false;
    695    signal_ram_dspin_rsp_false.read  = true;
     697    for (size_t p = 0; p < m_nb_procs && m_disable_procs; p++)
     698    {
     699        signal_int_vci_ini_proc[p].cmdval = false;
     700        signal_int_vci_ini_proc[p].rspack = true;
     701        signal_int_dspin_m2p_proc[p].read = true;
     702        signal_int_dspin_p2m_proc[p].write = false;
     703        signal_int_dspin_clack_proc[p].write = false;
     704    }
     705
     706    signal_ram_dspin_cmd_false.write = false;
     707    signal_ram_dspin_rsp_false.read  = true;
    696708} // end init
    697709
Note: See TracChangeset for help on using the changeset viewer.