Ignore:
Timestamp:
Apr 6, 2017, 5:01:31 PM (7 years ago)
Author:
alain
Message:

Introduce the vci_master_nic component in the TSAR IOB architecture.

Location:
trunk/platforms/tsar_generic_iob/tsar_iob_cluster/caba/source
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/platforms/tsar_generic_iob/tsar_iob_cluster/caba/source/include/tsar_iob_cluster.h

    r1030 r1050  
    198198    DspinRouter<dspin_ram_rsp_width>*                 ram_router_rsp;
    199199
     200    // IO Network Components (not instanciated in all clusters)
     201
    200202    DspinLocalCrossbar<dspin_ram_cmd_width>*          ram_xbar_cmd;
    201203    DspinLocalCrossbar<dspin_ram_rsp_width>*          ram_xbar_rsp;
    202    
    203 
    204     // IO Network Components (not instanciated in all clusters)
    205204
    206205    VciIoBridge<vci_param_int,
  • trunk/platforms/tsar_generic_iob/tsar_iob_cluster/caba/source/src/tsar_iob_cluster.cpp

    r1034 r1050  
    340340                     nb_procs,                     // number of local targets
    341341                     1, 1,                         // fifo depths
    342                      true,                         // CMD
     342                     true,                         // pseudo CMD
    343343                     false,                        // no routing table
    344                      false);                       // broadcast
     344                     false);                       // no broadcast
    345345
    346346    ////////////  DSPIN INT_CMD ROUTER ////////////////////////////////////////////
     
    470470              2, 2,                         // in fifo, out fifo depths
    471471              true,                         // is cmd ?
    472               false,                        // use routing table ?
    473               false);                       // support broadcast ?
     472              false,                        // no routing table
     473              false);                       // no broadcast
    474474
    475475        ////////////  DSPIN RAM_RSP LOCAL_XBAR  ///////////////////////////////////
     
    484484              2, 2,                         // in fifo, out fifo depths
    485485              false,                        // is cmd ?
    486               true,                         // use routing table ?
    487               false);                       // support broadcast ?
     486              true,                         // use routing table
     487              false);                       // no broadcast
    488488
    489489    } // end if IO
Note: See TracChangeset for help on using the changeset viewer.