Changeset 664


Ignore:
Timestamp:
Mar 26, 2014, 10:49:53 AM (10 years ago)
Author:
alain
Message:

Improved platform supporting both external an internal peripherals.
Iti has been validated with the GIET_VM for the following xml mappingss:

  • 4c_4p_sort_leti
  • 4c_4p_sort_leti_ext
  • 4c_4p_transpose_leti
  • 4c_4p_transpose_leti_ext
  • 4c_1p_four_leti_ext
Location:
trunk/platforms/tsar_generic_leti
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/platforms/tsar_generic_leti/top.cpp

    r630 r664  
    11/////////////////////////////////////////////////////////////////////////
    2 // File: top.cpp
     2// File: top.cpp (for tsar_generic_leti)
    33// Author: Alain Greiner
    44// Copyright: UPMC/LIP6
     
    3333//
    3434// Each processor receive 4 consecutive IRQ lines from the local XICU.
     35//
    3536// In all clusters, the MEMC IRQ line (signaling a late write error)
    3637// is connected to XICU HWI[8]
    37 //
    38 // The cluster 0 contains two more peripherals:
     38// The cluster (0,0) contains two "internal" peripherals:
    3939// - one block device controller, whose IRQ is connected to XICU HWI[9].
    4040// - one single channel TTY controller, whose IRQ is connected to XICU HWI[10].
     
    4343// that must be considered as an extension of this top.cpp file.
    4444//
    45 // Besides the hardware components contained in clusters, external peripherals
     45// Besides the hardware components in clusters, "external" peripherals
    4646// are connected to an external IO bus (implemented as a vci_local_crossbar):
    4747// - one disk controller
     
    5050// - one multi-channel tty controller
    5151// - one frame buffer controller
    52 // - one 16 channels iopic controller
     52// - one 32 channels iopic controller
    5353//
    5454// This IOBUS is connected to the north  port of the DIR_CMD
    55 // and DIR_RSP routers, in cluster(X_SIZE-1, Y_SIZE-1).
     55// and DIR_RSP routers, in cluster(X_SIZE-1, Y_SIZE-2).
    5656// For all external peripherals, the hardware interrupts (HWI) are
    57 // translated to software interrupts (SWI) by the iopic component:
    58 // - IRQ_MNIC_RX[1:0]   connected to IOPIC HWI[1:0]
    59 // - IRQ_MNIC_TX[1:0]   connected to IOPIC HWI[3:2]
    60 // - IRQ_CDMA[3:0]      connected to IOPIC HWI[7:4]
    61 // - IRQ_BDEV           connected to IOPIC HWI[9]
    62 // - IRQ_MTTY[3:0]      connected to IOPIC HWI[15:12]
     57// translated to write interrupts (WTI) by the iopic component:
     58// - IOPIC HWI[1:0]     connected to IRQ_NIC_RX[1:0]
     59// - IOPIC HWI[3:2]     connected to IRQ_NIC_TX[1:0]     
     60// - IOPIC HWI[7:4]     connected to IRQ_CMA_TX[3:0]]
     61// - IOPIC HWI[8]       connected to IRQ_BDEV
     62// - IOPIC HWI[15:9]    unused       (grounded)
     63// - IOPIC HWI[23:16]   connected to IRQ_TTY_RX[7:0]]
     64// - IOPIC HWI[31:24]   connected to IRQ_TTY_TX[7:0]]
    6365////////////////////////////////////////////////////////////////////////////
    6466// The following parameters must be defined in the hard_config.h file :
     
    6870// - Y_SIZE           : number of clusters in a column
    6971// - NB_PROCS_MAX     : number of processors per cluster (1, 2 or 4)
    70 // - NB_CMA_CHANNELS  : number of CMA channels in I/0 cluster (8 max)
    71 // - NB_TTY_CHANNELS  : number of TTY channels in I/O cluster (16 max)
     72// - NB_CMA_CHANNELS  : number of CMA channels in I/0 cluster (4 max)
     73// - NB_TTY_CHANNELS  : number of TTY channels in I/O cluster (8 max)
    7274// - NB_NIC_CHANNELS  : number of NIC channels in I/O cluster (2 max)
    73 // - USE_EXT_IO       : use external peripherals if non zero
    7475//
    7576// Some other hardware parameters are not used when compiling the OS,
     
    126127#include "alloc_elems.h"
    127128
    128 ///////////////////////////////////////////////////
    129 //      OS
    130 ///////////////////////////////////////////////////
    131 
    132 #define USE_GIET_VM     0
    133 #define USE_GIET_TSAR   1
     129//////////////////////////////////////////////////////////////////////////////////////////
     130//    Parameters depending on the OS and software application         
     131//    - path to hard_config file
     132//    - path to binary code for the RAM loader
     133//    - path to disk image for RAMDISK loader
     134//    - path to disk image for IOC device
     135//////////////////////////////////////////////////////////////////////////////////////////
     136
     137#define USE_GIET_VM     1
     138#define USE_GIET_TSAR   0
    134139
    135140#if ( USE_GIET_VM and USE_GIET_TSAR )
     
    139144#if ( (not USE_GIET_VM) and (not USE_GIET_TSAR) )
    140145#error "You need to specify one OS"
     146#endif
     147
     148#if USE_GIET_TSAR
     149#include                         "../../softs/soft_transpose_giet/hard_config.h"
     150#define BINARY_PATH_FOR_LOADER   "../../softs/soft_transpose_giet/bin.soft"
     151#define RAMDISK_PATH_FOR_LOADER  "../../softs/soft_transpose_giet/images.raw@0x00800000:"
     152#define DISK_IMAGE_PATH_FOR_IOC  "../../softs/soft_transpose_giet/images.raw"
     153#endif
     154
     155#if USE_GIET_VM
     156#include                         "../../../giet_vm/hard_config.h"
     157#define BINARY_PATH_FOR_LOADER   "../../softs/tsar_boot/preloader.elf"
     158#define RAMDISK_PATH_FOR_LOADER  "../../../giet_vm/hdd/virt_hdd.dmg@0x02000000:"
     159#define DISK_IMAGE_PATH_FOR_IOC  "../../../giet_vm/hdd/virt_hdd.dmg"       
    141160#endif
    142161
     
    181200#define vci_wrplen_width      1
    182201
    183 ////////////////////////////////////////////////////////////
    184 //    Main Hardware Parameters values         
    185 //////////////////////i/////////////////////////////////////
    186 
    187 #include "../../softs/soft_transpose_giet/hard_config.h"
    188 
    189 ////////////////////////////////////////////////////////////
     202
     203/////////////////////////////////////////////////////////////////////////////////////////
    190204//    Secondary Hardware Parameters         
    191 //////////////////////i/////////////////////////////////////
     205/////////////////////////////////////////////////////////////////////////////////////////
    192206
    193207#define RESET_ADDRESS         0x0
    194208
     209#define MAX_TTY_CHANNELS      8
     210#define MAX_CMA_CHANNELS      4
     211#define MAX_NIC_CHANNELS      2
     212
    195213#define XRAM_LATENCY          0
     214#define XRAM_SIZE             0x04000000    // 64 Mbytes per cluster
    196215
    197216#define MEMC_WAYS             16
     
    207226#define FBUF_Y_SIZE           128
    208227
    209 #define BDEV_IMAGE_NAME       "../../softs/soft_transpose_giet/images.raw"
    210 
    211228#define NIC_MAC4              0XBABEF00D
    212229#define NIC_MAC2              0xBEEF
    213 #define NIC_RX_NAME           "../../softs/soft_hello_giet/fake"
    214 #define NIC_TX_NAME           "../../softs/soft_hello_giet/fake"
     230#define NIC_RX_NAME           "./fake"
     231#define NIC_TX_NAME           "./fake"
    215232
    216233#define NORTH                 0
     
    219236#define WEST                  3
    220237
    221 ////////////////////////////////////////////////////////////
    222 //    Arguments for the SoCLib loader         
    223 //////////////////////i/////////////////////////////////////
    224 
    225 #define elf_loader           "../../softs/soft_transpose_giet/bin.soft"
    226 #define ramdisk_loader       "../../softs/soft_transpose_giet/images.raw@0x00800000:"
    227 
    228 ////////////////////////////////////////////////////////////
     238///////////////////////////////////////////////////////////////////////////////////////
    229239//     DEBUG Parameters default values         
    230 //////////////////////i/////////////////////////////////////
     240///////////////////////////////////////////////////////////////////////////////////////
    231241
    232242#define MAX_FROZEN_CYCLES     10000
    233243
    234 ////////////////////////////////////////////////////////////////////
     244///////////////////////////////////////////////////////////////////////////////////////
    235245//     LOCAL TGTID & SRCID definition
    236246// For all components:  global TGTID = global SRCID = cluster_index
    237 ////////////////////////////////////////////////////////////////////
    238 
    239 #define MEMC_TGTID      0
    240 #define XICU_TGTID      1
    241 #define MTTY_TGTID      2
    242 #define BDEV_TGTID      3
    243 #define FBUF_TGTID      4
    244 #define MNIC_TGTID      5
    245 #define CDMA_TGTID      6
    246 #define IOPI_TGTID      7
    247 
    248 #define BDEV_SRCID      NB_PROCS_MAX
    249 #define CDMA_SRCID      NB_PROCS_MAX + 1
    250 #define IOPI_SRCID      NB_PROCS_MAX + 2
    251 
    252 /////////////////////////////////////////////////////////////////////
     247///////////////////////////////////////////////////////////////////////////////////////
     248
     249#define MEMC_TGTID            0
     250#define XICU_TGTID            1
     251#define MTTY_TGTID            2
     252#define BDEV_TGTID            3
     253#define FBUF_TGTID            4
     254#define MNIC_TGTID            5
     255#define CDMA_TGTID            6
     256#define IOPI_TGTID            7
     257
     258#define BDEV_SRCID            NB_PROCS_MAX
     259#define CDMA_SRCID            NB_PROCS_MAX + 1
     260#define IOPI_SRCID            NB_PROCS_MAX + 2
     261
     262//////////////////////////////////////////////////////////////////////////////////////
    253263//    Physical segments definition
    254 /////////////////////////////////////////////////////////////////////
     264//////////////////////////////////////////////////////////////////////////////////////
    255265// - 3 segments are replicated in all clusters
    256266// - 2 segments are replicated in cluster[0,0] & [X_SIZE-1,Y_SIZE-1]
    257 // - 4 segments are only in cluster [X_SIZE-1,Y_SIZE]
     267// - 4 segments are only in cluster [X_SIZE-1,Y_SIZE-1]
    258268// The following values are for segments in cluster 0,
    259269// and these 32 bits values must be concatenate with the cluster
    260270// index (on 8 bits) to obtain the 40 bits address.
    261 /////////////////////////////////////////////////////////////////////
    262 
    263    // in cluster [0,0] & [X_SIZE-1,Y_SIZE]
     271//////////////////////////////////////////////////////////////////////////////////////
     272
     273   // in cluster [0,0] & [X_SIZE-1,Y_SIZE-1]
    264274
    265275   #define MTTY_BASE    0xF4000000
     
    269279   #define BDEV_SIZE    0x00001000   // 4 Kbytes
    270280
    271    // in cluster [X_SIZE-1,Y_SIZE]
     281   // in cluster [X_SIZE-1,Y_SIZE-1]
    272282
    273283   #define FBUF_BASE    0xF3000000
     
    286296
    287297   #define MEMC_BASE    0x00000000
    288    #define MEMC_SIZE    0x01000000   // 16 Mbytes per cluster
     298   #define MEMC_SIZE    XRAM_SIZE
    289299
    290300   #define MCFG_BASE    0xE0000000
     
    336346            size_t y = trace_memc_id & ((1<<Y_WIDTH)-1);
    337347
    338             assert( (x <= X_SIZE) and (y <= Y_SIZE) &&
     348            assert( (x < X_SIZE) and (y < (Y_SIZE-1)) and
    339349                  "MEMCID parameter refers a not valid memory cache");
    340350         }
     
    346356            size_t x          = cluster_xy >> Y_WIDTH;
    347357            size_t y          = cluster_xy & ((1<<Y_WIDTH)-1);
    348 
    349             assert( (x <= X_SIZE) and (y <= Y_SIZE) &&
     358            size_t l          = trace_proc_id % NB_PROCS_MAX ;
     359
     360            assert( (x < X_SIZE) and (y < (Y_SIZE-1)) and l < NB_PROCS_MAX and
    350361                  "PROCID parameter refers a not valid processor");
    351362         }
     
    383394            "The Y_SIZE parameter cannot be larger than 16" );
    384395
    385     assert( (NB_PROCS_MAX <= 8) and
     396    assert( (NB_PROCS_MAX <= 4) and
    386397            "The NB_PROCS_MAX parameter cannot be larger than 4" );
    387398
    388     assert( (NB_CMA_CHANNELS <= 4) and
     399    assert( (NB_CMA_CHANNELS <= MAX_CMA_CHANNELS) and
    389400            "The NB_CMA_CHANNELS parameter cannot be larger than 4" );
    390401
    391     assert( (NB_TTY_CHANNELS <= 4) and
    392             "The NB_TTY_CHANNELS parameter cannot be larger than 4" );
    393 
    394     assert( (NB_NIC_CHANNELS <= 2) and
     402    assert( (NB_TTY_CHANNELS <= MAX_TTY_CHANNELS) and
     403            "The NB_TTY_CHANNELS parameter cannot be larger than 8" );
     404
     405    assert( (NB_NIC_CHANNELS <= MAX_NIC_CHANNELS) and
    395406            "The NB_NIC_CHANNELS parameter cannot be larger than 2" );
    396407
     
    415426    std::cout << " - MAX_CYCLES       = " << ncycles << std::endl;
    416427    std::cout << " - RESET_ADDRESS    = " << RESET_ADDRESS << std::endl;
    417     std::cout << " - SOFT_FILENAME    = " << elf_loader << std::endl;
    418     std::cout << " - RAMDISK_FILENAME = " << ramdisk_loader << std::endl;
     428    std::cout << " - SOFT_PATH_NAME   = " << BINARY_PATH_FOR_LOADER << std::endl;
     429    std::cout << " - DISK_IMAGE_PATH  = " << DISK_IMAGE_PATH_FOR_IOC << std::endl;
    419430
    420431    std::cout << std::endl;
     
    462473   for (size_t x = 0; x < X_SIZE; x++)
    463474   {
    464       for (size_t y = 0; y < Y_SIZE; y++)
     475      for (size_t y = 0; y < (Y_SIZE-1) ; y++)
    465476      {
    466477         sc_uint<vci_address_width> offset;
     
    484495   }
    485496
    486    // segments in cluster(0,0)
     497   // segments for peripherals in cluster(0,0)
    487498   maptabd.add(Segment("seg_tty0", MTTY_BASE, MTTY_SIZE,
    488499               IntTab(cluster(0,0),MTTY_TGTID), false));
     
    491502               IntTab(cluster(0,0),BDEV_TGTID), false));
    492503
    493    // segments in cluster_io (X_SIZE-1,Y_SIZE)
     504   // segments for peripherals in cluster_io (X_SIZE-1,Y_SIZE-1)
    494505   sc_uint<vci_address_width> offset;
    495    offset = ((sc_uint<vci_address_width>)cluster(X_SIZE-1,Y_SIZE)) << 32;
     506   offset = ((sc_uint<vci_address_width>)cluster(X_SIZE-1,Y_SIZE-1)) << 32;
    496507
    497508   maptabd.add(Segment("seg_mtty", MTTY_BASE + offset, MTTY_SIZE,
    498                IntTab(cluster(X_SIZE-1, Y_SIZE),MTTY_TGTID), false));
     509               IntTab(cluster(X_SIZE-1, Y_SIZE-1),MTTY_TGTID), false));
    499510
    500511   maptabd.add(Segment("seg_fbuf", FBUF_BASE + offset, FBUF_SIZE,
    501                IntTab(cluster(X_SIZE-1, Y_SIZE),FBUF_TGTID), false));
     512               IntTab(cluster(X_SIZE-1, Y_SIZE-1),FBUF_TGTID), false));
    502513
    503514   maptabd.add(Segment("seg_bdev", BDEV_BASE + offset, BDEV_SIZE,
    504                IntTab(cluster(X_SIZE-1, Y_SIZE),BDEV_TGTID), false));
     515               IntTab(cluster(X_SIZE-1, Y_SIZE-1),BDEV_TGTID), false));
    505516
    506517   maptabd.add(Segment("seg_mnic", MNIC_BASE + offset, MNIC_SIZE,
    507                IntTab(cluster(X_SIZE-1, Y_SIZE),MNIC_TGTID), false));
     518               IntTab(cluster(X_SIZE-1, Y_SIZE-1),MNIC_TGTID), false));
    508519
    509520   maptabd.add(Segment("seg_cdma", CDMA_BASE + offset, CDMA_SIZE,
    510                IntTab(cluster(X_SIZE-1, Y_SIZE),CDMA_TGTID), false));
     521               IntTab(cluster(X_SIZE-1, Y_SIZE-1),CDMA_TGTID), false));
    511522
    512523   maptabd.add(Segment("seg_iopi", IOPI_BASE + offset, IOPI_SIZE,
    513                IntTab(cluster(X_SIZE-1, Y_SIZE),IOPI_TGTID), false));
     524               IntTab(cluster(X_SIZE-1, Y_SIZE-1),IOPI_TGTID), false));
    514525
    515526   std::cout << maptabd << std::endl;
     
    526537    for (size_t x = 0; x < X_SIZE; x++)
    527538    {
    528         for (size_t y = 0; y < Y_SIZE ; y++)
     539        for (size_t y = 0; y < (Y_SIZE-1) ; y++)
    529540        {
    530541            sc_uint<vci_address_width> offset;
     
    552563    sc_signal<bool>                   signal_irq_mnic_rx[NB_NIC_CHANNELS];
    553564    sc_signal<bool>                   signal_irq_mnic_tx[NB_NIC_CHANNELS];
    554     sc_signal<bool>                   signal_irq_mtty[NB_TTY_CHANNELS];
     565    sc_signal<bool>                   signal_irq_mtty_rx[NB_TTY_CHANNELS];
     566//  sc_signal<bool>                   signal_irq_mtty_tx[NB_TTY_CHANNELS];
    555567    sc_signal<bool>                   signal_irq_cdma[NB_CMA_CHANNELS];
    556568    sc_signal<bool>                   signal_irq_false;
     
    558570   // Horizontal inter-clusters DSPIN signals
    559571   DspinSignals<dspin_cmd_width>** signal_dspin_h_cmd_inc =
    560       alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_h_cmd_inc", X_SIZE-1, Y_SIZE);
     572      alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_h_cmd_inc", X_SIZE-1, Y_SIZE-1);
    561573   DspinSignals<dspin_cmd_width>** signal_dspin_h_cmd_dec =
    562       alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_h_cmd_dec", X_SIZE-1, Y_SIZE);
     574      alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_h_cmd_dec", X_SIZE-1, Y_SIZE-1);
    563575
    564576   DspinSignals<dspin_rsp_width>** signal_dspin_h_rsp_inc =
    565       alloc_elems<DspinSignals<dspin_rsp_width> >("signal_dspin_h_rsp_inc", X_SIZE-1, Y_SIZE);
     577      alloc_elems<DspinSignals<dspin_rsp_width> >("signal_dspin_h_rsp_inc", X_SIZE-1, Y_SIZE-1);
    566578   DspinSignals<dspin_rsp_width>** signal_dspin_h_rsp_dec =
    567       alloc_elems<DspinSignals<dspin_rsp_width> >("signal_dspin_h_rsp_dec", X_SIZE-1, Y_SIZE);
     579      alloc_elems<DspinSignals<dspin_rsp_width> >("signal_dspin_h_rsp_dec", X_SIZE-1, Y_SIZE-1);
    568580
    569581   DspinSignals<dspin_cmd_width>** signal_dspin_h_m2p_inc =
    570       alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_h_m2p_inc", X_SIZE-1, Y_SIZE);
     582      alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_h_m2p_inc", X_SIZE-1, Y_SIZE-1);
    571583   DspinSignals<dspin_cmd_width>** signal_dspin_h_m2p_dec =
    572       alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_h_m2p_dec", X_SIZE-1, Y_SIZE);
     584      alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_h_m2p_dec", X_SIZE-1, Y_SIZE-1);
    573585
    574586   DspinSignals<dspin_rsp_width>** signal_dspin_h_p2m_inc =
    575       alloc_elems<DspinSignals<dspin_rsp_width> >("signal_dspin_h_p2m_inc", X_SIZE-1, Y_SIZE);
     587      alloc_elems<DspinSignals<dspin_rsp_width> >("signal_dspin_h_p2m_inc", X_SIZE-1, Y_SIZE-1);
    576588   DspinSignals<dspin_rsp_width>** signal_dspin_h_p2m_dec =
    577       alloc_elems<DspinSignals<dspin_rsp_width> >("signal_dspin_h_p2m_dec", X_SIZE-1, Y_SIZE);
     589      alloc_elems<DspinSignals<dspin_rsp_width> >("signal_dspin_h_p2m_dec", X_SIZE-1, Y_SIZE-1);
    578590
    579591   DspinSignals<dspin_cmd_width>** signal_dspin_h_cla_inc =
    580       alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_h_cla_inc", X_SIZE-1, Y_SIZE);
     592      alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_h_cla_inc", X_SIZE-1, Y_SIZE-1);
    581593   DspinSignals<dspin_cmd_width>** signal_dspin_h_cla_dec =
    582       alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_h_cla_dec", X_SIZE-1, Y_SIZE);
     594      alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_h_cla_dec", X_SIZE-1, Y_SIZE-1);
    583595
    584596   // Vertical inter-clusters DSPIN signals
    585597   DspinSignals<dspin_cmd_width>** signal_dspin_v_cmd_inc =
    586       alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_v_cmd_inc", X_SIZE, Y_SIZE-1);
     598      alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_v_cmd_inc", X_SIZE, Y_SIZE-2);
    587599   DspinSignals<dspin_cmd_width>** signal_dspin_v_cmd_dec =
    588       alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_v_cmd_dec", X_SIZE, Y_SIZE-1);
     600      alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_v_cmd_dec", X_SIZE, Y_SIZE-2);
    589601
    590602   DspinSignals<dspin_rsp_width>** signal_dspin_v_rsp_inc =
    591       alloc_elems<DspinSignals<dspin_rsp_width> >("signal_dspin_v_rsp_inc", X_SIZE, Y_SIZE-1);
     603      alloc_elems<DspinSignals<dspin_rsp_width> >("signal_dspin_v_rsp_inc", X_SIZE, Y_SIZE-2);
    592604   DspinSignals<dspin_rsp_width>** signal_dspin_v_rsp_dec =
    593       alloc_elems<DspinSignals<dspin_rsp_width> >("signal_dspin_v_rsp_dec", X_SIZE, Y_SIZE-1);
     605      alloc_elems<DspinSignals<dspin_rsp_width> >("signal_dspin_v_rsp_dec", X_SIZE, Y_SIZE-2);
    594606
    595607   DspinSignals<dspin_cmd_width>** signal_dspin_v_m2p_inc =
    596       alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_v_m2p_inc", X_SIZE, Y_SIZE-1);
     608      alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_v_m2p_inc", X_SIZE, Y_SIZE-2);
    597609   DspinSignals<dspin_cmd_width>** signal_dspin_v_m2p_dec =
    598       alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_v_m2p_dec", X_SIZE, Y_SIZE-1);
     610      alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_v_m2p_dec", X_SIZE, Y_SIZE-2);
    599611
    600612   DspinSignals<dspin_rsp_width>** signal_dspin_v_p2m_inc =
    601       alloc_elems<DspinSignals<dspin_rsp_width> >("signal_dspin_v_p2m_inc", X_SIZE, Y_SIZE-1);
     613      alloc_elems<DspinSignals<dspin_rsp_width> >("signal_dspin_v_p2m_inc", X_SIZE, Y_SIZE-2);
    602614   DspinSignals<dspin_rsp_width>** signal_dspin_v_p2m_dec =
    603       alloc_elems<DspinSignals<dspin_rsp_width> >("signal_dspin_v_p2m_dec", X_SIZE, Y_SIZE-1);
     615      alloc_elems<DspinSignals<dspin_rsp_width> >("signal_dspin_v_p2m_dec", X_SIZE, Y_SIZE-2);
    604616
    605617   DspinSignals<dspin_cmd_width>** signal_dspin_v_cla_inc =
    606       alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_v_cla_inc", X_SIZE, Y_SIZE-1);
     618      alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_v_cla_inc", X_SIZE, Y_SIZE-2);
    607619   DspinSignals<dspin_cmd_width>** signal_dspin_v_cla_dec =
    608       alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_v_cla_dec", X_SIZE, Y_SIZE-1);
     620      alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_v_cla_dec", X_SIZE, Y_SIZE-2);
    609621
    610622   // Mesh boundaries DSPIN signals (Most of those signals are not used...)
    611623   DspinSignals<dspin_cmd_width>*** signal_dspin_bound_cmd_in =
    612       alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_bound_cmd_in" , X_SIZE, Y_SIZE, 4);
     624      alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_bound_cmd_in" , X_SIZE, Y_SIZE-1, 4);
    613625   DspinSignals<dspin_cmd_width>*** signal_dspin_bound_cmd_out =
    614       alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_bound_cmd_out", X_SIZE, Y_SIZE, 4);
     626      alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_bound_cmd_out", X_SIZE, Y_SIZE-1, 4);
    615627
    616628   DspinSignals<dspin_rsp_width>*** signal_dspin_bound_rsp_in =
    617       alloc_elems<DspinSignals<dspin_rsp_width> >("signal_dspin_bound_rsp_in" , X_SIZE, Y_SIZE, 4);
     629      alloc_elems<DspinSignals<dspin_rsp_width> >("signal_dspin_bound_rsp_in" , X_SIZE, Y_SIZE-1, 4);
    618630   DspinSignals<dspin_rsp_width>*** signal_dspin_bound_rsp_out =
    619       alloc_elems<DspinSignals<dspin_rsp_width> >("signal_dspin_bound_rsp_out", X_SIZE, Y_SIZE, 4);
     631      alloc_elems<DspinSignals<dspin_rsp_width> >("signal_dspin_bound_rsp_out", X_SIZE, Y_SIZE-1, 4);
    620632
    621633   DspinSignals<dspin_cmd_width>*** signal_dspin_bound_m2p_in =
    622       alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_bound_m2p_in" , X_SIZE, Y_SIZE, 4);
     634      alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_bound_m2p_in" , X_SIZE, Y_SIZE-1, 4);
    623635   DspinSignals<dspin_cmd_width>*** signal_dspin_bound_m2p_out =
    624       alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_bound_m2p_out", X_SIZE, Y_SIZE, 4);
     636      alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_bound_m2p_out", X_SIZE, Y_SIZE-1, 4);
    625637
    626638   DspinSignals<dspin_rsp_width>*** signal_dspin_bound_p2m_in =
    627       alloc_elems<DspinSignals<dspin_rsp_width> >("signal_dspin_bound_p2m_in" , X_SIZE, Y_SIZE, 4);
     639      alloc_elems<DspinSignals<dspin_rsp_width> >("signal_dspin_bound_p2m_in" , X_SIZE, Y_SIZE-1, 4);
    628640   DspinSignals<dspin_rsp_width>*** signal_dspin_bound_p2m_out =
    629       alloc_elems<DspinSignals<dspin_rsp_width> >("signal_dspin_bound_p2m_out", X_SIZE, Y_SIZE, 4);
     641      alloc_elems<DspinSignals<dspin_rsp_width> >("signal_dspin_bound_p2m_out", X_SIZE, Y_SIZE-1, 4);
    630642
    631643   DspinSignals<dspin_cmd_width>*** signal_dspin_bound_cla_in =
    632       alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_bound_cla_in" , X_SIZE, Y_SIZE, 4);
     644      alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_bound_cla_in" , X_SIZE, Y_SIZE-1, 4);
    633645   DspinSignals<dspin_cmd_width>*** signal_dspin_bound_cla_out =
    634       alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_bound_cla_out", X_SIZE, Y_SIZE, 4);
     646      alloc_elems<DspinSignals<dspin_cmd_width> >("signal_dspin_bound_cla_out", X_SIZE, Y_SIZE-1, 4);
    635647
    636648   // VCI signals for iobus and peripherals
     
    658670   ////////////////////////////
    659671
    660    soclib::common::Loader loader( elf_loader, ramdisk_loader );
     672#if USE_IOC_RDK
     673   soclib::common::Loader loader( BINARY_PATH_FOR_LOADER, RAMDISK_PATH_FOR_LOADER );
     674#else
     675   soclib::common::Loader loader( BINARY_PATH_FOR_LOADER );
     676#endif
    661677
    662678   ///////////////////////////
     
    667683   proc_iss::set_loader( loader );
    668684
    669    ////////////////////////////
    670    // Clusters construction
    671    ////////////////////////////
     685   //////////////////////////////////////////////////////////////
     686   // mesh construction: only (X_SIZE) * (Y_SIZE-1) clusters
     687   //////////////////////////////////////////////////////////////
    672688
    673689   TsarLetiCluster<dspin_cmd_width,
    674690                   dspin_rsp_width,
    675691                   vci_param_int,
    676                    vci_param_ext>*          clusters[X_SIZE][Y_SIZE];
     692                   vci_param_ext>*          clusters[X_SIZE][Y_SIZE-1];
    677693
    678694#if USE_OPENMP
     
    681697#pragma omp for
    682698#endif
    683         for (size_t i = 0; i  < (X_SIZE * Y_SIZE); i++)
     699        for (size_t i = 0; i  < (X_SIZE * (Y_SIZE-1)); i++)
    684700        {
    685             size_t x = i / Y_SIZE;
    686             size_t y = i % Y_SIZE;
     701            size_t x = i / (Y_SIZE-1);
     702            size_t y = i % (Y_SIZE-1);
    687703
    688704#if USE_OPENMP
     
    695711            std::cout << std::endl;
    696712
     713            std::ostringstream cluster_name;
     714            cluster_name <<  "cluster_" << std::dec << x << "_" << y;
     715
    697716            clusters[x][y] = new TsarLetiCluster<dspin_cmd_width,
    698717                                                 dspin_rsp_width,
     
    700719                                                 vci_param_ext>
    701720            (
    702                 "cluster",
     721                cluster_name.str().c_str(),
    703722                NB_PROCS_MAX,
    704723                x,
     
    715734                MTTY_TGTID,
    716735                BDEV_TGTID,
    717                 BDEV_IMAGE_NAME,
     736                DISK_IMAGE_PATH_FOR_IOC,
    718737                MEMC_WAYS,
    719738                MEMC_SETS,
     
    742761    //////////////////////////////////////////////////////////////////
    743762    // IO bus and external peripherals in cluster[X_SIZE-1,Y_SIZE]
     763    // - 6 local targets    : FBF, TTY, CMA, NIC, PIC, IOC
     764    // - 3 local initiators : IOC, CMA, PIC
     765    // There is no PROC, no MEMC and no XICU in this cluster,
     766    // but the crossbar has (NB_PROCS_MAX + 3) intiators and
     767    // 8 targets, in order to use the same SRCID and TGTID space
     768    // (same mapping table for the internal components,
     769    //  and for the external peripherals)
    744770    //////////////////////////////////////////////////////////////////
    745771
    746     size_t cluster_io = cluster(X_SIZE-1, Y_SIZE);
     772    std::cout << std::endl;
     773    std::cout << " Building IO cluster (external peripherals)" << std::endl;
     774    std::cout << std::endl;
     775 
     776    size_t cluster_io = cluster(X_SIZE-1, Y_SIZE-1);
    747777
    748778    //////////// vci_local_crossbar 
     
    771801                IntTab(cluster_io, BDEV_SRCID),
    772802                IntTab(cluster_io, BDEV_TGTID),
    773                 BDEV_IMAGE_NAME,
     803                DISK_IMAGE_PATH_FOR_IOC,
    774804                512,                          // block size
    775805                64 );                         // burst size
     
    820850                IntTab(cluster_io, IOPI_SRCID),
    821851                IntTab(cluster_io, IOPI_TGTID),
    822                 16 );
     852                32,
     853                20000000 );
    823854
    824855    ////////////// vci_dspin wrappers
     
    909940    for ( size_t i=0 ; i<NB_TTY_CHANNELS ; i++ )
    910941    {
    911         mtty->p_irq[i]                  (signal_irq_mtty[i]);
     942        mtty->p_irq[i]                  (signal_irq_mtty_rx[i]);
    912943    }
    913944
     
    915946
    916947    // iopic
     948    // NB_NIC_CHANNELS <= 2
     949    // NB_CMA_CHANNELS <= 4
     950    // NB_TTY_CHANNELS <= 8
    917951    iopic->p_clk                       (signal_clk);
    918952    iopic->p_resetn                    (signal_resetn);
    919953    iopic->p_vci_target                (signal_vci_tgt_iopi);
    920954    iopic->p_vci_initiator             (signal_vci_ini_iopi);
    921     for ( size_t i=0 ; i<16 ; i++)
     955    for ( size_t i=0 ; i<32 ; i++)
    922956    {
    923957       if     (i < NB_NIC_CHANNELS)    iopic->p_hwi[i] (signal_irq_mnic_rx[i]);
     
    926960       else if(i < 4 )                 iopic->p_hwi[i] (signal_irq_false);
    927961       else if(i < 4+NB_CMA_CHANNELS)  iopic->p_hwi[i] (signal_irq_cdma[i-4]);
    928        else if(i < 9)                  iopic->p_hwi[i] (signal_irq_false);
    929        else if(i == 9)                 iopic->p_hwi[i] (signal_irq_bdev);
    930        else if(i < 12)                 iopic->p_hwi[i] (signal_irq_false);
    931        else if(i < 12+NB_TTY_CHANNELS) iopic->p_hwi[i] (signal_irq_mtty[i-12]);
     962       else if(i < 8)                  iopic->p_hwi[i] (signal_irq_false);
     963       else if(i == 8)                 iopic->p_hwi[i] (signal_irq_bdev);
     964       else if(i < 16)                 iopic->p_hwi[i] (signal_irq_false);
     965       else if(i < 16+NB_TTY_CHANNELS) iopic->p_hwi[i] (signal_irq_mtty_rx[i-16]);
     966       else if(i < 24)                 iopic->p_hwi[i] (signal_irq_false);
     967       else if(i < 24+NB_TTY_CHANNELS) iopic->p_hwi[i] (signal_irq_false);
     968//     else if(i < 24+NB_TTY_CHANNELS) iopic->p_hwi[i] (signal_irq_mtty_tx[i-24]);
    932969       else                            iopic->p_hwi[i] (signal_irq_false);
    933970    }
     971
     972    std::cout << "  - IOPIC connected" << std::endl;
    934973
    935974    // vci/dspin wrappers
     
    937976    wi_iobus->p_resetn                 (signal_resetn);
    938977    wi_iobus->p_vci                    (signal_vci_cmd_to_noc);
    939     wi_iobus->p_dspin_cmd              (signal_dspin_bound_cmd_in[X_SIZE-1][Y_SIZE-1][NORTH]);
    940     wi_iobus->p_dspin_rsp              (signal_dspin_bound_rsp_out[X_SIZE-1][Y_SIZE-1][NORTH]);
     978    wi_iobus->p_dspin_cmd              (signal_dspin_bound_cmd_in[X_SIZE-1][Y_SIZE-2][NORTH]);
     979    wi_iobus->p_dspin_rsp              (signal_dspin_bound_rsp_out[X_SIZE-1][Y_SIZE-2][NORTH]);
    941980
    942981    // vci/dspin wrappers
     
    944983    wt_iobus->p_resetn                 (signal_resetn);
    945984    wt_iobus->p_vci                    (signal_vci_cmd_from_noc);
    946     wt_iobus->p_dspin_cmd              (signal_dspin_bound_cmd_out[X_SIZE-1][Y_SIZE-1][NORTH]);
    947     wt_iobus->p_dspin_rsp              (signal_dspin_bound_rsp_in[X_SIZE-1][Y_SIZE-1][NORTH]);
     985    wt_iobus->p_dspin_cmd              (signal_dspin_bound_cmd_out[X_SIZE-1][Y_SIZE-2][NORTH]);
     986    wt_iobus->p_dspin_rsp              (signal_dspin_bound_rsp_in[X_SIZE-1][Y_SIZE-2][NORTH]);
    948987
    949988    // Clock & RESET for clusters
    950989    for (size_t x = 0; x < (X_SIZE); x++)
    951990    {
    952         for (size_t y = 0; y < Y_SIZE; y++)
     991        for (size_t y = 0; y < (Y_SIZE-1); y++)
    953992        {
    954993            clusters[x][y]->p_clk                    (signal_clk);
     
    9621001        for (size_t x = 0; x < (X_SIZE-1); x++)
    9631002        {
    964             for (size_t y = 0; y < Y_SIZE; y++)
     1003            for (size_t y = 0; y < (Y_SIZE-1); y++)
    9651004            {
    9661005                clusters[x][y]->p_cmd_out[EAST]      (signal_dspin_h_cmd_inc[x][y]);
     
    9941033
    9951034    // Inter Clusters vertical connections
    996     if (Y_SIZE > 1)
    997     {
    998         for (size_t y = 0; y < (Y_SIZE-1); y++)
     1035    if (Y_SIZE > 2)
     1036    {
     1037        for (size_t y = 0; y < (Y_SIZE-2); y++)
    9991038        {
    10001039            for (size_t x = 0; x < X_SIZE; x++)
     
    10301069
    10311070    // East & West boundary cluster connections
    1032     for (size_t y = 0; y < Y_SIZE; y++)
     1071    for (size_t y = 0; y < (Y_SIZE-1); y++)
    10331072    {
    10341073        clusters[0][y]->p_cmd_in[WEST]           (signal_dspin_bound_cmd_in[0][y][WEST]);
     
    10581097    }
    10591098
     1099    std::cout << std::endl << "West & East boundaries connections done" << std::endl;
     1100
    10601101    // North & South boundary clusters connections
    10611102    for (size_t x = 0; x < X_SIZE; x++)
     
    10631104        clusters[x][0]->p_cmd_in[SOUTH]          (signal_dspin_bound_cmd_in[x][0][SOUTH]);
    10641105        clusters[x][0]->p_cmd_out[SOUTH]         (signal_dspin_bound_cmd_out[x][0][SOUTH]);
    1065         clusters[x][Y_SIZE-1]->p_cmd_in[NORTH]   (signal_dspin_bound_cmd_in[x][Y_SIZE-1][NORTH]);
    1066         clusters[x][Y_SIZE-1]->p_cmd_out[NORTH]  (signal_dspin_bound_cmd_out[x][Y_SIZE-1][NORTH]);
     1106        clusters[x][Y_SIZE-2]->p_cmd_in[NORTH]   (signal_dspin_bound_cmd_in[x][Y_SIZE-2][NORTH]);
     1107        clusters[x][Y_SIZE-2]->p_cmd_out[NORTH]  (signal_dspin_bound_cmd_out[x][Y_SIZE-2][NORTH]);
    10671108
    10681109        clusters[x][0]->p_rsp_in[SOUTH]          (signal_dspin_bound_rsp_in[x][0][SOUTH]);
    10691110        clusters[x][0]->p_rsp_out[SOUTH]         (signal_dspin_bound_rsp_out[x][0][SOUTH]);
    1070         clusters[x][Y_SIZE-1]->p_rsp_in[NORTH]   (signal_dspin_bound_rsp_in[x][Y_SIZE-1][NORTH]);
    1071         clusters[x][Y_SIZE-1]->p_rsp_out[NORTH]  (signal_dspin_bound_rsp_out[x][Y_SIZE-1][NORTH]);
     1111        clusters[x][Y_SIZE-2]->p_rsp_in[NORTH]   (signal_dspin_bound_rsp_in[x][Y_SIZE-2][NORTH]);
     1112        clusters[x][Y_SIZE-2]->p_rsp_out[NORTH]  (signal_dspin_bound_rsp_out[x][Y_SIZE-2][NORTH]);
    10721113
    10731114        clusters[x][0]->p_m2p_in[SOUTH]          (signal_dspin_bound_m2p_in[x][0][SOUTH]);
    10741115        clusters[x][0]->p_m2p_out[SOUTH]         (signal_dspin_bound_m2p_out[x][0][SOUTH]);
    1075         clusters[x][Y_SIZE-1]->p_m2p_in[NORTH]   (signal_dspin_bound_m2p_in[x][Y_SIZE-1][NORTH]);
    1076         clusters[x][Y_SIZE-1]->p_m2p_out[NORTH]  (signal_dspin_bound_m2p_out[x][Y_SIZE-1][NORTH]);
     1116        clusters[x][Y_SIZE-2]->p_m2p_in[NORTH]   (signal_dspin_bound_m2p_in[x][Y_SIZE-2][NORTH]);
     1117        clusters[x][Y_SIZE-2]->p_m2p_out[NORTH]  (signal_dspin_bound_m2p_out[x][Y_SIZE-2][NORTH]);
    10771118
    10781119        clusters[x][0]->p_p2m_in[SOUTH]          (signal_dspin_bound_p2m_in[x][0][SOUTH]);
    10791120        clusters[x][0]->p_p2m_out[SOUTH]         (signal_dspin_bound_p2m_out[x][0][SOUTH]);
    1080         clusters[x][Y_SIZE-1]->p_p2m_in[NORTH]   (signal_dspin_bound_p2m_in[x][Y_SIZE-1][NORTH]);
    1081         clusters[x][Y_SIZE-1]->p_p2m_out[NORTH]  (signal_dspin_bound_p2m_out[x][Y_SIZE-1][NORTH]);
     1121        clusters[x][Y_SIZE-2]->p_p2m_in[NORTH]   (signal_dspin_bound_p2m_in[x][Y_SIZE-2][NORTH]);
     1122        clusters[x][Y_SIZE-2]->p_p2m_out[NORTH]  (signal_dspin_bound_p2m_out[x][Y_SIZE-2][NORTH]);
    10821123
    10831124        clusters[x][0]->p_cla_in[SOUTH]          (signal_dspin_bound_cla_in[x][0][SOUTH]);
    10841125        clusters[x][0]->p_cla_out[SOUTH]         (signal_dspin_bound_cla_out[x][0][SOUTH]);
    1085         clusters[x][Y_SIZE-1]->p_cla_in[NORTH]   (signal_dspin_bound_cla_in[x][Y_SIZE-1][NORTH]);
    1086         clusters[x][Y_SIZE-1]->p_cla_out[NORTH]  (signal_dspin_bound_cla_out[x][Y_SIZE-1][NORTH]);
    1087     }
    1088 
    1089     std::cout << std::endl << "North, South, West, East connections done" << std::endl;
     1126        clusters[x][Y_SIZE-2]->p_cla_in[NORTH]   (signal_dspin_bound_cla_in[x][Y_SIZE-2][NORTH]);
     1127        clusters[x][Y_SIZE-2]->p_cla_out[NORTH]  (signal_dspin_bound_cla_out[x][Y_SIZE-2][NORTH]);
     1128    }
     1129
     1130    std::cout << std::endl << "North & South boundaries connections done" << std::endl;
     1131
    10901132    std::cout << std::endl;
    10911133
     
    11021144    for (size_t x = 0; x < X_SIZE ; x++)
    11031145    {
    1104         for (size_t y = 0; y < Y_SIZE ; y++)
     1146        for (size_t y = 0; y < Y_SIZE-1 ; y++)
    11051147        {
    11061148            for (size_t face = 0; face < 4; face++)
    11071149            {
    1108                 if ( (x != X_SIZE-1) or (y != Y_SIZE-1) or (face != NORTH) )
     1150                if ( (x != X_SIZE-1) or (y != Y_SIZE-2) or (face != NORTH) )
    11091151                {
    11101152                    signal_dspin_bound_cmd_in [x][y][face].write = false;
     
    11371179    }
    11381180
     1181    // set default values for VCI signals connected to unused ports on iobus
     1182    signal_vci_tgt_memc.rspval = false;
     1183    signal_vci_tgt_xicu.rspval = false;
     1184    for ( size_t p = 0 ; p < NB_PROCS_MAX ; p++ ) signal_vci_ini_proc[p].cmdval = false;
     1185
    11391186    sc_start(sc_core::sc_time(1, SC_NS));
    11401187    signal_resetn = true;
     
    11461193    }
    11471194
    1148    for (uint64_t n = 1; n < ncycles && !stop_called; n++)
    1149    {
    1150       // Monitor a specific address for L1 & L2 caches
    1151       // clusters[0][0]->proc[0]->cache_monitor(0x0000010000ULL);
    1152       // clusters[0][0]->memc->cache_monitor(0x0000030000ULL);
    1153 
    1154       if( (n % 5000000) == 0)
    1155       {
    1156 
    1157          if (gettimeofday(&t2, NULL) != 0)
    1158          {
    1159             perror("gettimeofday");
    1160             return EXIT_FAILURE;
    1161          }
    1162 
    1163          ms1 = (uint64_t) t1.tv_sec * 1000ULL + (uint64_t) t1.tv_usec / 1000;
    1164          ms2 = (uint64_t) t2.tv_sec * 1000ULL + (uint64_t) t2.tv_usec / 1000;
    1165          std::cerr << "platform clock frequency "
    1166                    << (double) 5000000 / (double) (ms2 - ms1) << "Khz" << std::endl;
    1167 
    1168          if (gettimeofday(&t1, NULL) != 0)
    1169          {
    1170             perror("gettimeofday");
    1171             return EXIT_FAILURE;
    1172          }
    1173       }
    1174 
    1175       if ( trace_ok and (n > trace_from) )
    1176       {
    1177          std::cout << "****************** cycle " << std::dec << n ;
    1178          std::cout << " ************************************************" << std::endl;
    1179 
    1180         // trace proc[trace_proc_id]
    1181         size_t l = trace_proc_id % NB_PROCS_MAX ;
    1182         size_t x = (trace_proc_id / NB_PROCS_MAX) >> Y_WIDTH ;
    1183         size_t y = (trace_proc_id / NB_PROCS_MAX) & ((1<<Y_WIDTH) - 1);
    1184 
    1185         std::ostringstream proc_signame;
    1186         proc_signame << "[SIG]PROC_" << x << "_" << y << "_" << l ;
    1187         std::ostringstream xicu_signame;
    1188         xicu_signame << "[SIG]XICU_" << x << "_" << y ;
    1189 
    1190         clusters[x][y]->proc[l]->print_trace(0x1);
    1191         clusters[x][y]->signal_vci_ini_proc[l].print_trace(proc_signame.str());
    1192 
    1193         clusters[x][y]->xicu->print_trace(0);
    1194         clusters[x][y]->signal_vci_tgt_xicu.print_trace(xicu_signame.str());
    1195      
    1196         if ( clusters[x][y]->signal_proc_irq[0].read() ) 
    1197             std::cout << " IRQ_PROC active in cluster " << cluster(x,y) << std::endl;
    1198      
    1199         if ( signal_irq_bdev.read() ) 
    1200             std::cout << " IRQ_BDEV in cluster_io active" << std::endl;
    1201      
    1202         // trace memc[trace_memc_id] and xram[trace_memc_id]
    1203         x = trace_memc_id >> Y_WIDTH;
    1204         y = trace_memc_id & ((1<<Y_WIDTH) - 1);
    1205 
    1206         std::ostringstream smemc;
    1207         smemc << "[SIG]MEMC_" << x << "_" << y;
    1208         std::ostringstream sxram;
    1209         sxram << "[SIG]XRAM_" << x << "_" << y;
    1210 
    1211         clusters[x][y]->memc->print_trace();
    1212         clusters[x][y]->signal_vci_tgt_memc.print_trace(smemc.str());
    1213         clusters[x][y]->signal_vci_xram.print_trace(sxram.str());
     1195    // variable used for IRQ trace
     1196    bool prev_irq_bdev = false;
     1197    bool prev_irq_mtty_rx[8];
     1198    bool prev_irq_proc[16][16][4];
     1199
     1200    for( size_t x = 0 ; x<8  ; x++ ) prev_irq_mtty_rx[x] = false;
     1201
     1202    for( size_t x = 0 ; x<16 ; x++ )
     1203    for( size_t y = 0 ; y<16 ; y++ )
     1204    for( size_t i = 0 ; i<4  ; i++ ) prev_irq_proc[x][y][i] = false;
     1205
     1206    for (uint64_t n = 1; n < ncycles && !stop_called; n++)
     1207    {
     1208        // Monitor a specific address for L1 & L2 caches
     1209        // clusters[0][0]->proc[0]->cache_monitor(0x110002C078ULL);
     1210        // clusters[1][1]->memc->cache_monitor(0x110002c078ULL);
     1211
     1212        // stats display
     1213        if( (n % 5000000) == 0)
     1214        {
     1215
     1216            if (gettimeofday(&t2, NULL) != 0)
     1217            {
     1218                perror("gettimeofday");
     1219                return EXIT_FAILURE;
     1220            }
     1221
     1222            ms1 = (uint64_t) t1.tv_sec * 1000ULL + (uint64_t) t1.tv_usec / 1000;
     1223            ms2 = (uint64_t) t2.tv_sec * 1000ULL + (uint64_t) t2.tv_usec / 1000;
     1224            std::cerr << "platform clock frequency "
     1225                      << (double) 5000000 / (double) (ms2 - ms1) << "Khz" << std::endl;
     1226
     1227            if (gettimeofday(&t1, NULL) != 0)
     1228            {
     1229                perror("gettimeofday");
     1230                return EXIT_FAILURE;
     1231            }
     1232        }
     1233
     1234        // trace display
     1235        if ( trace_ok and (n > trace_from) )
     1236        {
     1237            std::cout << "****************** cycle " << std::dec << n ;
     1238            std::cout << " ************************************************" << std::endl;
     1239
     1240            size_t l = 0;
     1241            size_t x = 0;
     1242            size_t y = 0;
     1243
     1244            if ( trace_proc_ok )
     1245            {
     1246                l = trace_proc_id % NB_PROCS_MAX ;
     1247                x = (trace_proc_id / NB_PROCS_MAX) >> Y_WIDTH ;
     1248                y = (trace_proc_id / NB_PROCS_MAX) & ((1<<Y_WIDTH) - 1);
     1249
     1250                std::ostringstream proc_signame;
     1251                proc_signame << "[SIG]PROC_" << x << "_" << y << "_" << l ;
     1252                clusters[x][y]->proc[l]->print_trace();
     1253                clusters[x][y]->signal_vci_ini_proc[l].print_trace(proc_signame.str());
     1254
     1255                std::ostringstream xicu_signame;
     1256                xicu_signame << "[SIG]XICU_" << x << "_" << y ;
     1257                clusters[x][y]->xicu->print_trace(0);
     1258                clusters[x][y]->signal_vci_tgt_xicu.print_trace(xicu_signame.str());
     1259            }
     1260
     1261            if ( trace_memc_ok )
     1262            {
     1263                x = trace_memc_id >> Y_WIDTH;
     1264                y = trace_memc_id & ((1<<Y_WIDTH) - 1);
     1265
     1266                std::ostringstream smemc;
     1267                smemc << "[SIG]MEMC_" << x << "_" << y;
     1268                std::ostringstream sxram;
     1269                sxram << "[SIG]XRAM_" << x << "_" << y;
     1270
     1271                clusters[x][y]->memc->print_trace();
     1272                clusters[x][y]->signal_vci_tgt_memc.print_trace(smemc.str());
     1273                clusters[x][y]->signal_vci_xram.print_trace(sxram.str());
     1274            }   
     1275
     1276            // trace coherence signals
     1277            // clusters[0][0]->signal_dspin_m2p_proc[0].print_trace("[CC_M2P_0_0]");
     1278            // clusters[0][1]->signal_dspin_m2p_proc[0].print_trace("[CC_M2P_0_1]");
     1279            // clusters[1][0]->signal_dspin_m2p_proc[0].print_trace("[CC_M2P_1_0]");
     1280            // clusters[1][1]->signal_dspin_m2p_proc[0].print_trace("[CC_M2P_1_1]");
     1281
     1282            // clusters[0][0]->signal_dspin_p2m_proc[0].print_trace("[CC_P2M_0_0]");
     1283            // clusters[0][1]->signal_dspin_p2m_proc[0].print_trace("[CC_P2M_0_1]");
     1284            // clusters[1][0]->signal_dspin_p2m_proc[0].print_trace("[CC_P2M_1_0]");
     1285            // clusters[1][1]->signal_dspin_p2m_proc[0].print_trace("[CC_P2M_1_1]");
     1286
     1287            // trace xbar(s) m2p
     1288            // clusters[0][0]->xbar_m2p->print_trace();
     1289            // clusters[1][0]->xbar_m2p->print_trace();
     1290            // clusters[0][1]->xbar_m2p->print_trace();
     1291            // clusters[1][1]->xbar_m2p->print_trace();
    12141292       
    1215         // trace coherence signals
    1216         // clusters[0][0]->signal_dspin_m2p_proc[0].print_trace("[CC_M2P_0_0]");
    1217         // clusters[0][1]->signal_dspin_m2p_proc[0].print_trace("[CC_M2P_0_1]");
    1218         // clusters[1][0]->signal_dspin_m2p_proc[0].print_trace("[CC_M2P_1_0]");
    1219         // clusters[1][1]->signal_dspin_m2p_proc[0].print_trace("[CC_M2P_1_1]");
    1220 
    1221         // clusters[0][0]->signal_dspin_p2m_proc[0].print_trace("[CC_P2M_0_0]");
    1222         // clusters[0][1]->signal_dspin_p2m_proc[0].print_trace("[CC_P2M_0_1]");
    1223         // clusters[1][0]->signal_dspin_p2m_proc[0].print_trace("[CC_P2M_1_0]");
    1224         // clusters[1][1]->signal_dspin_p2m_proc[0].print_trace("[CC_P2M_1_1]");
    1225 
    1226         // trace xbar(s) m2p
    1227         // clusters[0][0]->xbar_m2p->print_trace();
    1228         // clusters[1][0]->xbar_m2p->print_trace();
    1229         // clusters[0][1]->xbar_m2p->print_trace();
    1230         // clusters[1][1]->xbar_m2p->print_trace();
     1293            // trace router(s) m2p
     1294            // clusters[0][0]->router_m2p->print_trace();
     1295            // clusters[1][0]->router_m2p->print_trace();
     1296            // clusters[0][1]->router_m2p->print_trace();
     1297            // clusters[1][1]->router_m2p->print_trace();
    12311298       
    1232         // trace router(s) m2p
    1233         // clusters[0][0]->router_m2p->print_trace();
    1234         // clusters[1][0]->router_m2p->print_trace();
    1235         // clusters[0][1]->router_m2p->print_trace();
    1236         // clusters[1][1]->router_m2p->print_trace();
     1299            // trace external ioc
     1300            bdev->print_trace();
     1301            signal_vci_tgt_bdev.print_trace("[SIG]BDEV_TGT");
     1302            signal_vci_ini_bdev.print_trace("[SIG]BDEV_INI");
     1303
     1304            // trace external iopic
     1305            iopic->print_trace();
     1306            signal_vci_tgt_iopi.print_trace("[SIG]IOPI_TGT");
     1307            signal_vci_ini_iopi.print_trace("[SIG]IOPI_INI");
     1308
     1309            // trace internal tty
     1310            // clusters[0][0]->mtty->print_trace();
     1311            // clusters[0][0]->signal_vci_tgt_mtty.print_trace("[SIG]MTTY");
     1312
     1313        }  // end trace
     1314
     1315        if (0)
     1316        {
     1317            // trace BDV interrupts events
     1318            if ( signal_irq_bdev.read() != prev_irq_bdev )
     1319            {
     1320                prev_irq_bdev = signal_irq_bdev.read();
     1321                std::cout << std::dec << "@@@ IRQ_BDEV = " << signal_irq_bdev.read()
     1322                          << " at cycle " << n << std::endl;
     1323            }
    12371324       
    1238         // trace external peripherals
    1239         bdev->print_trace();
    1240         signal_vci_tgt_bdev.print_trace("[SIG]BDEV_TGT");
    1241         signal_vci_ini_bdev.print_trace("[SIG]BDEV_INI");
    1242 
    1243         iopic->print_trace();
    1244         signal_vci_tgt_iopi.print_trace("[SIG]IOPI_TGT");
    1245         signal_vci_ini_iopi.print_trace("[SIG]IOPI_INI");
    1246 
    1247         clusters[0][0]->mtty->print_trace();
    1248         clusters[0][0]->signal_vci_tgt_mtty.print_trace("[SIG]MTTY");
    1249       }  // end trace
    1250 
    1251       sc_start(sc_core::sc_time(1, SC_NS));
    1252    }
    1253 
    1254    
    1255    // Free memory
    1256    for (size_t i = 0; i  < (X_SIZE * Y_SIZE); i++)
    1257    {
    1258       size_t x = i / Y_SIZE;
    1259       size_t y = i % Y_SIZE;
    1260       delete clusters[x][y];
    1261    }
    1262 
    1263    return EXIT_SUCCESS;
     1325            // trace TTY interrupts events
     1326            for ( size_t x = 0 ; x < 8 ; x++ )
     1327            {
     1328                if ( signal_irq_mtty_rx[x].read() != prev_irq_mtty_rx[x] )
     1329                {
     1330                    prev_irq_mtty_rx[x] = signal_irq_mtty_rx[x].read();
     1331                    std::cout << std::dec << "@@@ IRQ_MTTY["<<x<<"] = "
     1332                              << signal_irq_mtty_rx[x].read()
     1333                              << " at cycle " << n << std::endl;
     1334                }
     1335            }
     1336
     1337            // trace processor interrupts events
     1338            for ( size_t x = 0 ; x < 2 ; x++ )
     1339            for ( size_t y = 0 ; y < 2 ; y++ )
     1340            for ( size_t i = 0 ; i < 4 ; i++ )
     1341            {
     1342                if ( clusters[x][y]->signal_proc_irq[i] != prev_irq_proc[x][y][i] )
     1343                {
     1344                    prev_irq_proc[x][y][i] = clusters[x][y]->signal_proc_irq[i];
     1345                    std::cout << std::dec << "@@@ IRQ_PROC["<<x<<","<<y<<","<<i<<"] = "
     1346                              << clusters[x][y]->signal_proc_irq[i]
     1347                              << " at cycle " << n << std::endl;
     1348                }
     1349            }
     1350
     1351            // trace VCI transactions on IOPIC and XCU(0,0)
     1352            signal_vci_tgt_iopi.print_trace("@@@ IOPI_TGT");
     1353            signal_vci_ini_iopi.print_trace("@@@ IOPI_INI");
     1354            clusters[0][0]->signal_vci_tgt_xicu.print_trace("@@@ XCU_0_0");
     1355        }
     1356
     1357        sc_start(sc_core::sc_time(1, SC_NS));
     1358    }
     1359    // Free memory
     1360    for (size_t i = 0 ; i  < (X_SIZE * (Y_SIZE-1)) ; i++)
     1361    {
     1362        size_t x = i / (Y_SIZE-1);
     1363        size_t y = i % (Y_SIZE-1);
     1364        delete clusters[x][y];
     1365    }
     1366
     1367    return EXIT_SUCCESS;
    12641368}
    12651369
  • trunk/platforms/tsar_generic_leti/tsar_leti_cluster/caba/source/src/tsar_leti_cluster.cpp

    r628 r664  
    312312                     4,4);                         // input & output fifo depths
    313313
     314    // backup BDV and TTY peripherals in cluster(0,0)
    314315    if ((x_id == 0) and (y_id == 0))
    315316    {
     
    341342                     IntTab(cluster_xy, tgtid_mtty),
    342343                     mtd,
    343                      "tty_0_0", NULL );
     344                     "backup", NULL );
    344345
    345346        wt_mtty = new VciDspinTargetWrapper<vci_param_int,
Note: See TracChangeset for help on using the changeset viewer.