source: branches/reconfiguration/platforms/tsar_generic_iob/top.cpp @ 961

Last change on this file since 961 was 961, checked in by cfuguet, 9 years ago

reconf: merge commit 959 concerning parameters of the XICU

  • All four parameters (HWI, PTI, WTI and IRQ) has their own width constant in the hard_config.h.
File size: 75.6 KB
Line 
1///////////////////////////////////////////////////////////////////////////////
2// File: top.cpp  (for tsar_generic_iob platform)
3// Author: Alain Greiner
4// Copyright: UPMC/LIP6
5// Date : august 2013
6// This program is released under the GNU public license
7//
8// Modified by: Cesar Fuguet
9///////////////////////////////////////////////////////////////////////////////
10// This file define a generic TSAR architecture with an IO network emulating
11// an external bus (i.e. Hypertransport) to access 7 external peripherals:
12//
13// - FBUF : Frame Buffer
14// - MTTY : multi TTY (one channel)
15// - MNIC : Network controller (up to 2 channels)
16// - CDMA : Chained Buffer DMA controller (up to 4 channels)
17// - BDEV : Dlock Device controler (one channel)
18// - IOPI : HWI to SWI translator.
19// - SIMH : Simulation Helper
20//
21// The internal physical address space is 40 bits, and the cluster index
22// is defined by the 8 MSB bits, using a fixed format: X is encoded on 4 bits,
23// Y is encodes on 4 bits, whatever the actual mesh size.
24// => at most 16 * 16 clusters. Each cluster contains up to 4 processors.
25//
26// It contains 3 networks:
27//
28// 1) the "INT" network supports Read/Write transactions
29//    between processors and L2 caches or peripherals.
30//    (VCI ADDDRESS = 40 bits / VCI DATA width = 32 bits)
31//    It supports also coherence transactions between L1 & L2 caches.
32// 3) the "RAM" network emulates the 3D network between L2 caches
33//    and L3 caches, and is implemented as a 2D mesh between the L2 caches,
34//    the two IO bridges and the physical RAMs disributed in all clusters.
35//    (VCI ADDRESS = 40 bits / VCI DATA = 64 bits)
36// 4) the IOX network connects the two IO bridge components to the
37//    7 external peripheral controllers.
38//    (VCI ADDDRESS = 40 bits / VCI DATA width = 64 bits)
39//
40// The external peripherals HWI IRQs are translated to WTI IRQs by the
41// external IOPIC component, that must be configured by the OS to route
42// these WTI IRQS to one or several internal XICU components.
43// - IOPIC HWI[1:0]     connected to IRQ_NIC_RX[1:0]
44// - IOPIC HWI[3:2]     connected to IRQ_NIC_TX[1:0]
45// - IOPIC HWI[7:4]     connected to IRQ_CMA_TX[3:0]]
46// - IOPIC HWI[8]       connected to IRQ_BDEV
47// - IOPIC HWI[31:16]   connected to IRQ_TTY_RX[15:0]
48//
49// Besides the external peripherals, each cluster contains one XICU component,
50// and one multi channels DMA component.
51// The XICU component is mainly used to handle WTI IRQs, as only 5 HWI IRQs
52// are connected to XICU in each cluster:
53// - IRQ_IN[0] : MMC
54// - IRQ_IN[1] : DMA channel 0
55// - IRQ_IN[2] : DMA channel 1
56// - IRQ_IN[3] : DMA channel 2
57// - IRQ_IN[4] : DMA channel 3
58//
59// All clusters are identical, but cluster(0, 0) and cluster(X_SIZE-1, Y_SIZE-1)
60// contain an extra IO bridge component. These IOB0 & IOB1 components are
61// connected to the three networks (INT, RAM, IOX).
62//
63// - It uses two dspin_local_crossbar per cluster to implement the
64//   local interconnect correponding to the INT network.
65// - It uses three dspin_local_crossbar per cluster to implement the
66//   local interconnect correponding to the coherence INT network.
67// - It uses two virtual_dspin_router per cluster to implement
68//   the INT network (routing both the direct and coherence trafic).
69// - It uses two dspin_router per cluster to implement the RAM network.
70// - It uses the vci_cc_vcache_wrapper.
71// - It uses the vci_mem_cache.
72// - It contains one vci_xicu and one vci_multi_dma per cluster.
73// - It contains one vci_simple ram per cluster to model the L3 cache.
74//
75// The TsarIobCluster component is defined in files
76// tsar_iob_cluster.* (with * = cpp, h, sd)
77//
78// The main hardware parameters must be defined in the hard_config.h file :
79// - X_SIZE           : number of clusters in a row
80// - Y_SIZE           : number of clusters in a column
81// - NB_PROCS_MAX     : number of processors per cluster (power of 2)
82// - NB_TTY_CHANNELS  : number of TTY channels in I/O network (up to 16)
83// - NB_NIC_CHANNELS  : number of NIC channels in I/O network (up to 2)
84// - NB_CMA_CHANNELS  : number of CMA channels in I/O network (up to 4)
85// - FBUF_X_SIZE      : width of frame buffer (pixels)
86// - FBUF_Y_SIZE      : heigth of frame buffer (lines)
87// - XCU_NB_HWI       : number of HWIs
88// - XCU_NB_PTI       : number of PTIs
89// - XCU_NB_WTI       : number of WTIs
90// - XCU_NB_OUT       : number of OUTs
91//
92// Some secondary hardware parameters must be defined in this top.cpp file:
93// - XRAM_LATENCY     : external ram latency
94// - MEMC_WAYS        : L2 cache number of ways
95// - MEMC_SETS        : L2 cache number of sets
96// - L1_IWAYS
97// - L1_ISETS
98// - L1_DWAYS
99// - L1_DSETS
100// - BDEV_IMAGE_NAME  : file pathname for block device
101// - NIC_TIMEOUT      : max number of cycles before closing a container
102//
103// General policy for 40 bits physical address decoding:
104// All physical segments base addresses are multiple of 1 Mbytes
105// (=> the 24 LSB bits = 0, and the 16 MSB bits define the target)
106// The (X_WIDTH + Y_WIDTH) MSB bits (left aligned) define
107// the cluster index, and the LADR bits define the local index:
108//      |X_ID|Y_ID|  LADR  |     OFFSET          |
109//      |  4 |  4 |   8    |       24            |
110//
111// General policy for 14 bits SRCID decoding:
112// Each component is identified by (x_id, y_id, l_id) tuple.
113//      |X_ID|Y_ID| L_ID |
114//      |  4 |  4 |  6   |
115/////////////////////////////////////////////////////////////////////////
116
117#include <systemc>
118#include <sys/time.h>
119#include <iostream>
120#include <sstream>
121#include <cstdlib>
122#include <cstdarg>
123#include <climits>
124#include <stdint.h>
125#include <vector>
126
127#include "gdbserver.h"
128#include "mapping_table.h"
129
130#include "tsar_iob_cluster.h"
131#include "vci_chbuf_dma.h"
132#include "vci_multi_tty.h"
133#include "vci_multi_nic.h"
134#include "vci_target_error.h"
135#include "vci_simple_rom.h"
136#include "vci_block_device_tsar.h"
137#include "vci_framebuffer.h"
138#include "vci_iox_network.h"
139#include "vci_iopic.h"
140#include "vci_simhelper.h"
141
142#include "alloc_elems.h"
143
144///////////////////////////////////////////////////
145//      OS
146///////////////////////////////////////////////////
147#define USE_ALMOS 0
148
149#define almos_bootloader_pathname "bootloader.bin"
150#define almos_kernel_pathname     "kernel-soclib.bin@0xbfc10000:D"
151#define almos_archinfo_pathname   "arch-info.bin@0xBFC08000:D"
152
153///////////////////////////////////////////////////
154//               Parallelisation
155///////////////////////////////////////////////////
156#if USE_OPENMP
157#include <omp.h>
158#endif
159
160///////////////////////////////////////////////////////////
161//          DSPIN parameters
162///////////////////////////////////////////////////////////
163
164#define dspin_int_cmd_width   39
165#define dspin_int_rsp_width   32
166
167#define dspin_ram_cmd_width   64
168#define dspin_ram_rsp_width   64
169
170///////////////////////////////////////////////////////////
171//         VCI fields width  for the 3 VCI networks
172///////////////////////////////////////////////////////////
173
174#define vci_cell_width_int    4
175#define vci_cell_width_ext    8
176
177#define vci_plen_width        8
178#define vci_address_width     40
179#define vci_rerror_width      1
180#define vci_clen_width        1
181#define vci_rflag_width       1
182#define vci_srcid_width       14
183#define vci_pktid_width       4
184#define vci_trdid_width       4
185#define vci_wrplen_width      1
186
187////////////////////////////////////////////////////////////
188//    Main Hardware Parameters values
189//////////////////////i/////////////////////////////////////
190
191#include "hard_config.h"
192
193#define USE_NIC               0
194
195////////////////////////////////////////////////////////////
196//    Secondary Hardware Parameters values
197//////////////////////i/////////////////////////////////////
198
199#define XRAM_LATENCY          0
200
201#define MEMC_WAYS             16
202#define MEMC_SETS             256
203
204#define L1_IWAYS              4
205#define L1_ISETS              64
206
207#define L1_DWAYS              4
208#define L1_DSETS              64
209
210#define BDEV_IMAGE_NAME       "../../../giet_vm/hdd/virt_hdd.dmg"
211
212#define NIC_TIMEOUT           10000
213
214#define NORTH                 0
215#define SOUTH                 1
216#define EAST                  2
217#define WEST                  3
218
219#define cluster(x, y)   ((y) + ((x) << Y_WIDTH))
220
221////////////////////////////////////////////////////////////
222//     DEBUG Parameters default values
223//////////////////////i/////////////////////////////////////
224
225#define MAX_FROZEN_CYCLES     200000
226
227/////////////////////////////////////////////////////////
228//    Physical segments definition
229/////////////////////////////////////////////////////////
230
231// All physical segments base addresses and sizes are defined
232// in the hard_config.h file. For replicated segments, the
233// base address is incremented by a cluster offset:
234// offset  = cluster(x, y) << (address_width-X_WIDTH-Y_WIDTH);
235
236////////////////////////////////////////////////////////////////////////
237//          SRCID definition
238////////////////////////////////////////////////////////////////////////
239// All initiators are in the same indexing space (14 bits).
240// The SRCID is structured in two fields:
241// - The 8 MSB bits define the cluster index (left aligned)
242// - The 6 LSB bits define the local index.
243// Two different initiators cannot have the same SRCID, but a given
244// initiator can have two alias SRCIDs:
245// - Internal initiators (procs, mdma) are replicated in all clusters,
246//   and each initiator has one single SRCID.
247// - External initiators (bdev, cdma) are not replicated, but can be
248//   accessed in 2 clusters : cluster_iob0 and cluster_iob1.
249//   They have the same local index, but two different cluster indexes.
250//
251// As cluster_iob0 and cluster_iob1 contain both internal initiators
252// and external initiators, they must have different local indexes.
253// Consequence: For a local interconnect, the INI_ID port index
254// is NOT equal to the SRCID local index, and the local interconnect
255// must make a translation: SRCID => INI_ID
256////////////////////////////////////////////////////////////////////////
257
258#define PROC_LOCAL_SRCID             0x0    // from 0 to 7
259#define MDMA_LOCAL_SRCID             0x8
260#define IOBX_LOCAL_SRCID             0x9
261#define MEMC_LOCAL_SRCID             0xA
262#define CDMA_LOCAL_SRCID             0xB
263#define BDEV_LOCAL_SRCID             0xC
264#define IOPI_LOCAL_SRCID             0xD
265
266///////////////////////////////////////////////////////////////////////
267//     TGT_ID and INI_ID port indexing for INT local interconnect
268///////////////////////////////////////////////////////////////////////
269
270#define INT_MEMC_TGT_ID              0
271#define INT_XICU_TGT_ID              1
272#define INT_MDMA_TGT_ID              2
273#define INT_DROM_TGT_ID              3
274#define INT_IOBX_TGT_ID              4
275
276#define INT_PROC_INI_ID              0   // from 0 to (NB_PROCS_MAX-1)
277#define INT_MDMA_INI_ID              (NB_PROCS_MAX)
278#define INT_IOBX_INI_ID              (NB_PROCS_MAX+1)
279
280///////////////////////////////////////////////////////////////////////
281//     TGT_ID and INI_ID port indexing for RAM local interconnect
282///////////////////////////////////////////////////////////////////////
283
284#define RAM_XRAM_TGT_ID              0
285
286#define RAM_MEMC_INI_ID              0
287#define RAM_IOBX_INI_ID              1
288
289///////////////////////////////////////////////////////////////////////
290//     TGT_ID and INI_ID port indexing for I0X local interconnect
291///////////////////////////////////////////////////////////////////////
292
293#define IOX_FBUF_TGT_ID              0
294#define IOX_BDEV_TGT_ID              1
295#define IOX_MNIC_TGT_ID              2
296#define IOX_CDMA_TGT_ID              3
297#define IOX_MTTY_TGT_ID              4
298#define IOX_IOPI_TGT_ID              5
299#define IOX_SIMH_TGT_ID              6
300#define IOX_ROM_TGT_ID               7
301#define IOX_IOB0_TGT_ID              8
302#define IOX_IOB1_TGT_ID              9
303
304#define IOX_BDEV_INI_ID              0
305#define IOX_CDMA_INI_ID              1
306#define IOX_IOPI_INI_ID              2
307#define IOX_IOB0_INI_ID              3
308#define IOX_IOB1_INI_ID              4
309
310////////////////////////////////////////////////////////////////////////
311int _main(int argc, char *argv[])
312////////////////////////////////////////////////////////////////////////
313{
314   using namespace sc_core;
315   using namespace soclib::caba;
316   using namespace soclib::common;
317
318
319   char     dsoft_name[256]  = "";                // pathname: binary code
320   char     soft_name[256]   = "";                // pathname: binary code
321   size_t   ncycles          = UINT_MAX;          // simulated cycles
322   char     disk_name[256]   = BDEV_IMAGE_NAME;   // pathname: disk image
323   ssize_t  threads_nr       = 1;                 // simulator's threads number
324   size_t   faulty_mask      = 0x1F;              // interface mask for the faulty router
325   bool     debug_ok         = false;             // trace activated
326   size_t   debug_period     = 1;                 // trace period
327   size_t   debug_memc_id    = 0xFFFFFFFF;        // index of traced memc
328   size_t   debug_proc_id    = 0xFFFFFFFF;        // index of traced proc
329   size_t   debug_xram_id    = 0xFFFFFFFF;        // index of traced xram
330   bool     debug_iob        = false;             // trace iob0 & iob1 when true
331   uint32_t debug_from       = 0;                 // trace start cycle
332   uint32_t frozen_cycles    = MAX_FROZEN_CYCLES; // monitoring frozen processor
333
334   std::vector<size_t> faulty_routers;
335
336   assert( (X_WIDTH == 4) and (Y_WIDTH == 4) and
337   "ERROR: we must have X_WIDTH == Y_WIDTH == 4");
338
339   ////////////// command line arguments //////////////////////
340   if (argc > 1)
341   {
342      for (int n = 1; n < argc; n = n + 2)
343      {
344         if ((strcmp(argv[n], "-NCYCLES") == 0) && (n+1<argc))
345         {
346            ncycles = strtol(argv[n+1], NULL, 0);
347         }
348         else if ((strcmp(argv[n], "-SOFT") == 0) && (n+1<argc) )
349         {
350            strcpy(soft_name, argv[n+1]);
351         }
352         else if ((strcmp(argv[n], "-DSOFT") == 0) && (n+1<argc) )
353         {
354            strcpy(dsoft_name, argv[n+1]);
355         }
356         else if ((strcmp(argv[n], "-DEBUG") == 0) && (n+1<argc) )
357         {
358            debug_ok = true;
359            debug_from = strtol(argv[n+1], NULL, 0);
360         }
361         else if ((strcmp(argv[n], "-DISK") == 0) && (n+1<argc) )
362         {
363            strcpy(disk_name, argv[n+1]);
364         }
365         else if ((strcmp(argv[n], "-MEMCID") == 0) && (n+1<argc) )
366         {
367            debug_memc_id = strtol(argv[n+1], NULL, 0);
368            size_t x = debug_memc_id >> Y_WIDTH;
369            size_t y = debug_memc_id & ((1 << Y_WIDTH) - 1);
370            if( (x>=X_SIZE) || (y>=Y_SIZE) )
371            {
372                std::cout << "MEMCID parameter does'nt fit X_SIZE/Y_SIZE" << std::endl;
373                exit(0);
374            }
375         }
376         else if ((strcmp(argv[n], "-XRAMID") == 0) && (n+1<argc) )
377         {
378            debug_xram_id = strtol(argv[n+1], NULL, 0);
379            size_t x = debug_xram_id >> Y_WIDTH;
380            size_t y = debug_xram_id & ((1 << Y_WIDTH) - 1);
381            if( (x>=X_SIZE) || (y>=Y_SIZE) )
382            {
383                std::cout << "XRAMID parameter does'nt fit X_SIZE/Y_SIZE" << std::endl;
384                exit(0);
385            }
386         }
387         else if ((strcmp(argv[n], "-IOB") == 0) && (n+1<argc) )
388         {
389            debug_iob = strtol(argv[n+1], NULL, 0);
390         }
391         else if ((strcmp(argv[n], "-PROCID") == 0) && (n+1<argc) )
392         {
393            debug_proc_id     = strtol(argv[n+1], NULL, 0);
394            size_t cluster_xy = debug_proc_id >> P_WIDTH;
395            size_t x          = cluster_xy >> Y_WIDTH;
396            size_t y          = cluster_xy & ((1 << Y_WIDTH) - 1);
397            if( (x>=X_SIZE) || (y>=Y_SIZE) )
398            {
399                std::cout << "PROCID parameter does'nt fit X_SIZE/Y_SIZE" << std::endl;
400                exit(0);
401            }
402         }
403         else if ((strcmp(argv[n], "-THREADS") == 0) && ((n+1) < argc))
404         {
405            threads_nr = strtol(argv[n+1], NULL, 0);
406            threads_nr = (threads_nr < 1) ? 1 : threads_nr;
407         }
408         else if ((strcmp(argv[n], "-FROZEN") == 0) && (n+1 < argc))
409         {
410            frozen_cycles = strtol(argv[n+1], NULL, 0);
411         }
412         else if ((strcmp(argv[n], "-PERIOD") == 0) && (n+1 < argc))
413         {
414            debug_period = strtol(argv[n+1], NULL, 0);
415         }
416         else if ((strcmp(argv[n], "-FAULTY_ROUTER") == 0) && (n+3 < argc) )
417         {
418            size_t t = strtol(argv[n+1], NULL, 0);
419            size_t x = strtol(argv[n+2], NULL, 0);
420            size_t y = strtol(argv[n+3], NULL, 0);
421            n+=2;
422            if( (t > 4) )
423            {
424                std::cout << "FAULTY_ROUTER NoC index is too big (index > 4)" << std::endl;
425                exit(0);
426            }
427            if( (x>=X_SIZE) || (y>=Y_SIZE) )
428            {
429                std::cout << "FAULTY_ROUTER parameter doesn't fit X_SIZE/Y_SIZE" << std::endl;
430                exit(0);
431            }
432            faulty_routers.push_back((t << (X_WIDTH + Y_WIDTH)) |
433                                     (x << (Y_WIDTH)) |
434                                     (y));
435         }
436         else if ((strcmp(argv[n], "-FAULTY_MASK") == 0) && (n+1 < argc) )
437         {
438            faulty_mask = strtol(argv[n+1], NULL, 0);
439            if( faulty_mask > 0x1F )
440            {
441                std::cout << "FAULTY_MASK parameter max value is 0x1F" << std::endl;
442                exit(0);
443            }
444         }
445         else
446         {
447            std::cout << "   Arguments are (key, value) couples." << std::endl;
448            std::cout << "   The order is not important." << std::endl;
449            std::cout << "   Accepted arguments are :" << std::endl << std::endl;
450            std::cout << "     -SOFT pathname_for_embedded_soft" << std::endl;
451            std::cout << "     -DSOFT pathname_for_distributed_embedded_soft" << std::endl;
452            std::cout << "     -DISK pathname_for_disk_image" << std::endl;
453            std::cout << "     -NCYCLES number_of_simulated_cycles" << std::endl;
454            std::cout << "     -DEBUG debug_start_cycle" << std::endl;
455            std::cout << "     -THREADS simulator's threads number" << std::endl;
456            std::cout << "     -FROZEN max_number_of_lines" << std::endl;
457            std::cout << "     -PERIOD number_of_cycles between trace" << std::endl;
458            std::cout << "     -MEMCID index_memc_to_be_traced" << std::endl;
459            std::cout << "     -XRAMID index_xram_to_be_traced" << std::endl;
460            std::cout << "     -PROCID index_proc_to_be_traced" << std::endl;
461            std::cout << "     -IOB    non_zero_value" << std::endl;
462            exit(0);
463         }
464      }
465   }
466
467   // Activate Distributed Boot (set by environment variable)
468   // When this is activated, every processor boots with its instruction and data
469   // physical address extension register initialized to its cluster index
470   // (X_LOCAL, Y_LOCAL). To support this feature, a distributed ROM is
471   // implemented in each cluster.
472
473   const bool distributed_boot = (getenv("DISTRIBUTED_BOOT") != NULL);
474
475   // checking hardware parameters
476   assert( (X_SIZE <= (1 << X_WIDTH)) and
477           "The X_SIZE parameter cannot be larger than 16" );
478
479   assert( (Y_SIZE <= (1 << Y_WIDTH)) and
480           "The Y_SIZE parameter cannot be larger than 16" );
481
482   assert( (NB_PROCS_MAX <= (1 << P_WIDTH)) and
483           "NB_PROCS_MAX parameter cannot be larger than 2^P_WIDTH" );
484
485   assert( (NB_DMA_CHANNELS <= 4) and
486           "The NB_DMA_CHANNELS parameter cannot be larger than 4" );
487
488   assert( (NB_TTY_CHANNELS >= 1) and (NB_TTY_CHANNELS <= 16) and
489           "The NB_TTY_CHANNELS parameter cannot be larger than 16" );
490
491   assert( (NB_NIC_CHANNELS == 2) and
492           "The NB_NIC_CHANNELS parameter must be 2" );
493
494   std::cout << std::endl << std::dec
495             << " - X_SIZE          = " << X_SIZE << std::endl
496             << " - Y_SIZE          = " << Y_SIZE << std::endl
497             << " - NB_PROCS_MAX    = " << NB_PROCS_MAX <<  std::endl
498             << " - NB_TTY_CHANNELS = " << NB_TTY_CHANNELS <<  std::endl
499             << " - NB_DMA_CHANNELS = " << NB_DMA_CHANNELS <<  std::endl
500             << " - NB_NIC_CHANNELS = " << NB_NIC_CHANNELS <<  std::endl
501             << " - MEMC_WAYS       = " << MEMC_WAYS << std::endl
502             << " - MEMC_SETS       = " << MEMC_SETS << std::endl
503             << " - RAM_LATENCY     = " << XRAM_LATENCY << std::endl
504             << " - MAX_FROZEN      = " << frozen_cycles << std::endl
505             << " - DIST_BOOT       = " << distributed_boot << std::endl
506             << " - DEBUG_PROCID    = " << debug_proc_id << std::endl
507             << " - DEBUG_MEMCID    = " << debug_memc_id << std::endl
508             << " - DEBUG_XRAMID    = " << debug_xram_id << std::endl;
509
510   std::cout << std::endl;
511
512#if USE_OPENMP
513   omp_set_dynamic(false);
514   omp_set_num_threads(threads_nr);
515   std::cerr << "Built with openmp version " << _OPENMP
516             << " / numthreads = " << threads_nr << std::endl;
517#endif
518
519   // Define VciParams objects
520   typedef soclib::caba::VciParams<vci_cell_width_int,
521                                   vci_plen_width,
522                                   vci_address_width,
523                                   vci_rerror_width,
524                                   vci_clen_width,
525                                   vci_rflag_width,
526                                   vci_srcid_width,
527                                   vci_pktid_width,
528                                   vci_trdid_width,
529                                   vci_wrplen_width> vci_param_int;
530
531   typedef soclib::caba::VciParams<vci_cell_width_ext,
532                                   vci_plen_width,
533                                   vci_address_width,
534                                   vci_rerror_width,
535                                   vci_clen_width,
536                                   vci_rflag_width,
537                                   vci_srcid_width,
538                                   vci_pktid_width,
539                                   vci_trdid_width,
540                                   vci_wrplen_width> vci_param_ext;
541
542   const size_t cluster_iob0 = cluster(0, 0);               // cluster containing IOB0
543   const size_t cluster_iob1 = cluster(X_SIZE-1, Y_SIZE-1); // cluster containing IOB1
544
545   /////////////////////////////////////////////////////////////////////
546   // INT network mapping table
547   // - two levels address decoding for commands
548   // - two levels srcid decoding for responses
549   // - NB_PROCS_MAX + 2 (MDMA, IOBX) local initiators per cluster
550   // - 4 local targets (MEMC, XICU, MDMA, IOBX) per cluster
551   /////////////////////////////////////////////////////////////////////
552   MappingTable maptab_int( vci_address_width,
553                            IntTab(X_WIDTH + Y_WIDTH, 16 - X_WIDTH - Y_WIDTH),
554                            IntTab(X_WIDTH + Y_WIDTH, vci_srcid_width - X_WIDTH - Y_WIDTH),
555                            0x00FF000000);
556
557   for (size_t x = 0; x < X_SIZE; x++)
558   {
559      for (size_t y = 0; y < Y_SIZE; y++)
560      {
561         uint64_t offset = ((uint64_t)cluster(x, y))
562                              << (vci_address_width-X_WIDTH-Y_WIDTH);
563         bool config    = true;
564         bool cacheable = true;
565
566         // the four following segments are defined in all clusters
567
568         std::ostringstream    smemc_conf;
569         smemc_conf << "int_seg_memc_conf_" << x << "_" << y;
570         maptab_int.add(Segment(smemc_conf.str(), SEG_MMC_BASE+offset, SEG_MMC_SIZE,
571                     IntTab(cluster(x, y), INT_MEMC_TGT_ID), not cacheable, config ));
572
573         std::ostringstream    smemc_xram;
574         smemc_xram << "int_seg_memc_xram_" << x << "_" << y;
575         maptab_int.add(Segment(smemc_xram.str(), SEG_RAM_BASE+offset, SEG_RAM_SIZE,
576                     IntTab(cluster(x, y), INT_MEMC_TGT_ID), cacheable));
577
578         std::ostringstream    sxicu;
579         sxicu << "int_seg_xicu_" << x << "_" << y;
580         maptab_int.add(Segment(sxicu.str(), SEG_XCU_BASE+offset, SEG_XCU_SIZE,
581                     IntTab(cluster(x, y), INT_XICU_TGT_ID), not cacheable));
582
583         std::ostringstream    smdma;
584         smdma << "int_seg_mdma_" << x << "_" << y;
585         maptab_int.add(Segment(smdma.str(), SEG_DMA_BASE+offset, SEG_DMA_SIZE,
586                     IntTab(cluster(x, y), INT_MDMA_TGT_ID), not cacheable));
587
588         std::ostringstream    sdrom;
589         sdrom << "int_seg_drom_" << x << "_" << y;
590         maptab_int.add(Segment(sdrom.str(), SEG_DROM_BASE+offset, SEG_DROM_SIZE,
591                     IntTab(cluster(x, y), INT_DROM_TGT_ID), cacheable));
592
593         // the following segments are only defined in cluster_iob0 or in cluster_iob1
594
595         if ( (cluster(x, y) == cluster_iob0) or (cluster(x, y) == cluster_iob1) )
596         {
597            std::ostringstream    siobx;
598            siobx << "int_seg_iobx_" << x << "_" << y;
599            maptab_int.add(Segment(siobx.str(), SEG_IOB_BASE+offset, SEG_IOB_SIZE,
600                        IntTab(cluster(x, y), INT_IOBX_TGT_ID), not cacheable, config ));
601
602            std::ostringstream    stty;
603            stty << "int_seg_mtty_" << x << "_" << y;
604            maptab_int.add(Segment(stty.str(), SEG_TTY_BASE+offset, SEG_TTY_SIZE,
605                        IntTab(cluster(x, y), INT_IOBX_TGT_ID), not cacheable));
606
607            std::ostringstream    sfbf;
608            sfbf << "int_seg_fbuf_" << x << "_" << y;
609            maptab_int.add(Segment(sfbf.str(), SEG_FBF_BASE+offset, SEG_FBF_SIZE,
610                        IntTab(cluster(x, y), INT_IOBX_TGT_ID), not cacheable));
611
612            std::ostringstream    sbdv;
613            sbdv << "int_seg_bdev_" << x << "_" << y;
614            maptab_int.add(Segment(sbdv.str(), SEG_IOC_BASE+offset, SEG_IOC_SIZE,
615                        IntTab(cluster(x, y), INT_IOBX_TGT_ID), not cacheable));
616
617            std::ostringstream    snic;
618            snic << "int_seg_mnic_" << x << "_" << y;
619            maptab_int.add(Segment(snic.str(), SEG_NIC_BASE+offset, SEG_NIC_SIZE,
620                        IntTab(cluster(x, y), INT_IOBX_TGT_ID), not cacheable));
621
622            std::ostringstream    sdma;
623            sdma << "int_seg_cdma_" << x << "_" << y;
624            maptab_int.add(Segment(sdma.str(), SEG_CMA_BASE+offset, SEG_CMA_SIZE,
625                        IntTab(cluster(x, y), INT_IOBX_TGT_ID), not cacheable));
626
627            std::ostringstream    spic;
628            spic << "int_seg_iopi_" << x << "_" << y;
629            maptab_int.add(Segment(spic.str(), SEG_PIC_BASE+offset, SEG_PIC_SIZE,
630                        IntTab(cluster(x, y), INT_IOBX_TGT_ID), not cacheable));
631
632            std::ostringstream    ssim;
633            ssim << "int_seg_simh_" << x << "_" << y;
634            maptab_int.add(Segment(ssim.str(), SEG_SIM_BASE+offset, SEG_SIM_SIZE,
635                        IntTab(cluster(x, y), INT_IOBX_TGT_ID), not cacheable));
636
637            std::ostringstream    srom;
638            srom << "int_seg_rom_" << x << "_" << y;
639            maptab_int.add(Segment(srom.str(), SEG_ROM_BASE+offset, SEG_ROM_SIZE,
640                        IntTab(cluster(x, y), INT_IOBX_TGT_ID), cacheable));
641         }
642
643         // This define the mapping between the SRCIDs
644         // and the port index on the local interconnect.
645
646         maptab_int.srcid_map( IntTab( cluster(x, y), MDMA_LOCAL_SRCID ),
647                               IntTab( cluster(x, y), INT_MDMA_INI_ID ) );
648
649         maptab_int.srcid_map( IntTab( cluster(x, y), IOBX_LOCAL_SRCID ),
650                               IntTab( cluster(x, y), INT_IOBX_INI_ID ) );
651
652         maptab_int.srcid_map( IntTab( cluster(x, y), IOPI_LOCAL_SRCID ),
653                               IntTab( cluster(x, y), INT_IOBX_INI_ID ) );
654
655         for ( size_t p = 0 ; p < NB_PROCS_MAX ; p++ )
656         maptab_int.srcid_map( IntTab( cluster(x, y), PROC_LOCAL_SRCID+p ),
657                               IntTab( cluster(x, y), INT_PROC_INI_ID+p ) );
658      }
659   }
660   std::cout << "INT network " << maptab_int << std::endl;
661
662    /////////////////////////////////////////////////////////////////////////
663    // RAM network mapping table
664    // - two levels address decoding for commands
665    // - two levels srcid decoding for responses
666    // - 2 local initiators (MEMC, IOBX) per cluster
667    //   (IOBX component only in cluster_iob0 and cluster_iob1)
668    // - 1 local target (XRAM) per cluster
669    ////////////////////////////////////////////////////////////////////////
670    MappingTable maptab_ram( vci_address_width,
671                             IntTab(X_WIDTH+Y_WIDTH, 0),
672                             IntTab(X_WIDTH+Y_WIDTH, vci_srcid_width - X_WIDTH - Y_WIDTH),
673                             0x00FF000000);
674
675    for (size_t x = 0; x < X_SIZE; x++)
676    {
677        for (size_t y = 0; y < Y_SIZE ; y++)
678        {
679            uint64_t offset = ((uint64_t)cluster(x, y))
680                                << (vci_address_width-X_WIDTH-Y_WIDTH);
681
682            std::ostringstream sxram;
683            sxram << "ext_seg_xram_" << x << "_" << y;
684            maptab_ram.add(Segment(sxram.str(), SEG_RAM_BASE+offset,
685                           SEG_RAM_SIZE, IntTab(cluster(x, y), RAM_XRAM_TGT_ID), false));
686        }
687    }
688
689    // This define the mapping between the initiators SRCID
690    // and the port index on the RAM local interconnect.
691    // External initiator have two alias SRCID (iob0 / iob1)
692
693    maptab_ram.srcid_map( IntTab( cluster_iob0, CDMA_LOCAL_SRCID ),
694                          IntTab( cluster_iob0, RAM_IOBX_INI_ID ) );
695
696    maptab_ram.srcid_map( IntTab( cluster_iob1, CDMA_LOCAL_SRCID ),
697                          IntTab( cluster_iob1, RAM_IOBX_INI_ID ) );
698
699    maptab_ram.srcid_map( IntTab( cluster_iob0, BDEV_LOCAL_SRCID ),
700                          IntTab( cluster_iob0, RAM_IOBX_INI_ID ) );
701
702    maptab_ram.srcid_map( IntTab( cluster_iob1, BDEV_LOCAL_SRCID ),
703                          IntTab( cluster_iob1, RAM_IOBX_INI_ID ) );
704
705    maptab_ram.srcid_map( IntTab( cluster_iob0, IOPI_LOCAL_SRCID ),
706                          IntTab( cluster_iob0, RAM_IOBX_INI_ID ) );
707
708    maptab_ram.srcid_map( IntTab( cluster_iob1, IOPI_LOCAL_SRCID ),
709                          IntTab( cluster_iob1, RAM_IOBX_INI_ID ) );
710
711    maptab_ram.srcid_map( IntTab( cluster_iob0, MEMC_LOCAL_SRCID ),
712                          IntTab( cluster_iob0, RAM_MEMC_INI_ID ) );
713
714    maptab_ram.srcid_map( IntTab( cluster_iob1, MEMC_LOCAL_SRCID ),
715                          IntTab( cluster_iob1, RAM_MEMC_INI_ID ) );
716
717    std::cout << "RAM network " << maptab_ram << std::endl;
718
719    ///////////////////////////////////////////////////////////////////////
720    // IOX network mapping table
721    // - two levels address decoding for commands (9, 7) bits
722    // - two levels srcid decoding for responses
723    // - 5 initiators (IOB0, IOB1, BDEV, CDMA, IOPI)
724    // - 9 targets (IOB0, IOB1, BDEV, CDMA, MTTY, FBUF, ROM, MNIC, IOPI)
725    //
726    // Address bit 32 is used to determine if a command must be routed to
727    // IOB0 or IOB1.
728    ///////////////////////////////////////////////////////////////////////
729    MappingTable maptab_iox(
730          vci_address_width,
731          IntTab(X_WIDTH + Y_WIDTH - 1, 16 - X_WIDTH - Y_WIDTH + 1),
732          IntTab(X_WIDTH + Y_WIDTH    , vci_param_ext::S - X_WIDTH - Y_WIDTH),
733          0x00FF000000);
734
735    // External peripherals segments
736    // When there is more than one cluster, external peripherals can be accessed
737    // through two segments, depending on the used IOB (IOB0 or IOB1).
738
739    const uint64_t iob0_base = ((uint64_t)cluster_iob0)
740       << (vci_address_width - X_WIDTH - Y_WIDTH);
741
742    maptab_iox.add(Segment("iox_seg_mtty_0", SEG_TTY_BASE + iob0_base, SEG_TTY_SIZE,
743                   IntTab(0, IOX_MTTY_TGT_ID), false));
744    maptab_iox.add(Segment("iox_seg_fbuf_0", SEG_FBF_BASE + iob0_base, SEG_FBF_SIZE,
745                   IntTab(0, IOX_FBUF_TGT_ID), false));
746    maptab_iox.add(Segment("iox_seg_bdev_0", SEG_IOC_BASE + iob0_base, SEG_IOC_SIZE,
747                   IntTab(0, IOX_BDEV_TGT_ID), false));
748    maptab_iox.add(Segment("iox_seg_mnic_0", SEG_NIC_BASE + iob0_base, SEG_NIC_SIZE,
749                   IntTab(0, IOX_MNIC_TGT_ID), false));
750    maptab_iox.add(Segment("iox_seg_cdma_0", SEG_CMA_BASE + iob0_base, SEG_CMA_SIZE,
751                   IntTab(0, IOX_CDMA_TGT_ID), false));
752    maptab_iox.add(Segment("iox_seg_iopi_0", SEG_PIC_BASE + iob0_base, SEG_PIC_SIZE,
753                   IntTab(0, IOX_IOPI_TGT_ID), false));
754    maptab_iox.add(Segment("iox_seg_simh_0", SEG_SIM_BASE + iob0_base, SEG_SIM_SIZE,
755                   IntTab(0, IOX_SIMH_TGT_ID), false));
756    maptab_iox.add(Segment("iox_seg_rom_0", SEG_ROM_BASE + iob0_base, SEG_ROM_SIZE,
757                   IntTab(0, IOX_ROM_TGT_ID), false));
758
759    if ( cluster_iob0 != cluster_iob1 )
760    {
761       const uint64_t iob1_base = ((uint64_t)cluster_iob1)
762          << (vci_address_width - X_WIDTH - Y_WIDTH);
763
764        maptab_iox.add(Segment("iox_seg_mtty_1", SEG_TTY_BASE + iob1_base, SEG_TTY_SIZE,
765                   IntTab(0, IOX_MTTY_TGT_ID), false));
766        maptab_iox.add(Segment("iox_seg_fbuf_1", SEG_FBF_BASE + iob1_base, SEG_FBF_SIZE,
767                   IntTab(0, IOX_FBUF_TGT_ID), false));
768        maptab_iox.add(Segment("iox_seg_bdev_1", SEG_IOC_BASE + iob1_base, SEG_IOC_SIZE,
769                   IntTab(0, IOX_BDEV_TGT_ID), false));
770        maptab_iox.add(Segment("iox_seg_mnic_1", SEG_NIC_BASE + iob1_base, SEG_NIC_SIZE,
771                   IntTab(0, IOX_MNIC_TGT_ID), false));
772        maptab_iox.add(Segment("iox_seg_cdma_1", SEG_CMA_BASE + iob1_base, SEG_CMA_SIZE,
773                   IntTab(0, IOX_CDMA_TGT_ID), false));
774        maptab_iox.add(Segment("iox_seg_iopi_1", SEG_PIC_BASE + iob1_base, SEG_PIC_SIZE,
775                   IntTab(0, IOX_IOPI_TGT_ID), false));
776        maptab_iox.add(Segment("iox_seg_simh_1", SEG_SIM_BASE + iob1_base, SEG_SIM_SIZE,
777                   IntTab(0, IOX_SIMH_TGT_ID), false));
778        maptab_iox.add(Segment("iox_seg_rom_1", SEG_ROM_BASE + iob1_base, SEG_ROM_SIZE,
779                   IntTab(0, IOX_ROM_TGT_ID), false));
780    }
781
782    // If there is more than one cluster, external peripherals
783    // can access RAM through two segments (IOB0 / IOB1).
784    // As IOMMU is not activated, addresses are 40 bits (physical addresses),
785    // and the choice depends on address bit A[32].
786    for (size_t x = 0; x < X_SIZE; x++)
787    {
788        for (size_t y = 0; y < Y_SIZE ; y++)
789        {
790            const bool wti       = true;
791            const bool cacheable = true;
792
793            const uint64_t offset = ((uint64_t)cluster(x, y))
794                << (vci_address_width-X_WIDTH-Y_WIDTH);
795
796            const uint64_t xicu_base = SEG_XCU_BASE + offset;
797
798            if ( (y & 0x1) == 0 ) // use IOB0
799            {
800                std::ostringstream sxcu0;
801                sxcu0 << "iox_seg_xcu0_" << x << "_" << y;
802                maptab_iox.add(Segment(sxcu0.str(), xicu_base, SEG_XCU_SIZE,
803                            IntTab(0, IOX_IOB0_TGT_ID), not cacheable, wti));
804
805                std::ostringstream siob0;
806                siob0 << "iox_seg_ram0_" << x << "_" << y;
807                maptab_iox.add(Segment(siob0.str(), offset, SEG_XCU_BASE,
808                            IntTab(0, IOX_IOB0_TGT_ID), not cacheable, not wti));
809            }
810            else                  // USE IOB1
811            {
812                std::ostringstream sxcu1;
813                sxcu1 << "iox_seg_xcu1_" << x << "_" << y;
814                maptab_iox.add(Segment(sxcu1.str(), xicu_base, SEG_XCU_SIZE,
815                            IntTab(0, IOX_IOB1_TGT_ID), not cacheable, wti));
816
817                std::ostringstream siob1;
818                siob1 << "iox_seg_ram1_" << x << "_" << y;
819                maptab_iox.add(Segment(siob1.str(), offset, SEG_XCU_BASE,
820                            IntTab(0, IOX_IOB1_TGT_ID), not cacheable, not wti));
821            }
822        }
823    }
824
825    // This define the mapping between the external initiators (SRCID)
826    // and the port index on the IOX local interconnect.
827
828    maptab_iox.srcid_map( IntTab( 0, CDMA_LOCAL_SRCID ) ,
829                          IntTab( 0, IOX_CDMA_INI_ID  ) );
830    maptab_iox.srcid_map( IntTab( 0, BDEV_LOCAL_SRCID ) ,
831                          IntTab( 0, IOX_BDEV_INI_ID  ) );
832    maptab_iox.srcid_map( IntTab( 0, IOPI_LOCAL_SRCID ) ,
833                          IntTab( 0, IOX_IOPI_INI_ID  ) );
834    maptab_iox.srcid_map( IntTab( 0, IOX_IOB0_INI_ID  ) ,
835                          IntTab( 0, IOX_IOB0_INI_ID  ) );
836
837    if ( cluster_iob0 != cluster_iob1 )
838    {
839        maptab_iox.srcid_map( IntTab( 0, IOX_IOB1_INI_ID ) ,
840                              IntTab( 0, IOX_IOB1_INI_ID ) );
841    }
842
843    std::cout << "IOX network " << maptab_iox << std::endl;
844
845    ////////////////////
846    // Signals
847    ///////////////////
848
849    sc_clock                          signal_clk("clk");
850    sc_signal<bool>                   signal_resetn("resetn");
851
852    sc_signal<bool>                   signal_irq_false;
853    sc_signal<bool>                   signal_irq_bdev;
854    sc_signal<bool>                   signal_irq_mtty_rx[NB_TTY_CHANNELS];
855    sc_signal<bool>                   signal_irq_mnic_rx[NB_NIC_CHANNELS];
856    sc_signal<bool>                   signal_irq_mnic_tx[NB_NIC_CHANNELS];
857    sc_signal<bool>                   signal_irq_cdma[NB_CMA_CHANNELS];
858
859    // VCI signals for IOX network
860    VciSignals<vci_param_ext>         signal_vci_ini_iob0("signal_vci_ini_iob0");
861    VciSignals<vci_param_ext>         signal_vci_ini_iob1("signal_vci_ini_iob1");
862    VciSignals<vci_param_ext>         signal_vci_ini_bdev("signal_vci_ini_bdev");
863    VciSignals<vci_param_ext>         signal_vci_ini_cdma("signal_vci_ini_cdma");
864    VciSignals<vci_param_ext>         signal_vci_ini_iopi("signal_vci_ini_iopi");
865
866    VciSignals<vci_param_ext>         signal_vci_tgt_iob0("signal_vci_tgt_iob0");
867    VciSignals<vci_param_ext>         signal_vci_tgt_iob1("signal_vci_tgt_iob1");
868    VciSignals<vci_param_ext>         signal_vci_tgt_mtty("signal_vci_tgt_mtty");
869    VciSignals<vci_param_ext>         signal_vci_tgt_fbuf("signal_vci_tgt_fbuf");
870    VciSignals<vci_param_ext>         signal_vci_tgt_mnic("signal_vci_tgt_mnic");
871    VciSignals<vci_param_ext>         signal_vci_tgt_bdev("signal_vci_tgt_bdev");
872    VciSignals<vci_param_ext>         signal_vci_tgt_cdma("signal_vci_tgt_cdma");
873    VciSignals<vci_param_ext>         signal_vci_tgt_iopi("signal_vci_ini_iopi");
874    VciSignals<vci_param_ext>         signal_vci_tgt_simh("signal_vci_ini_simh");
875    VciSignals<vci_param_ext>         signal_vci_tgt_rom("signal_vci_ini_rom");
876
877   // Horizontal inter-clusters INT network DSPIN
878   DspinSignals<dspin_int_cmd_width>*** signal_dspin_int_cmd_h_inc =
879      alloc_elems<DspinSignals<dspin_int_cmd_width> >("signal_dspin_int_cmd_h_inc", X_SIZE-1, Y_SIZE, 3);
880   DspinSignals<dspin_int_cmd_width>*** signal_dspin_int_cmd_h_dec =
881      alloc_elems<DspinSignals<dspin_int_cmd_width> >("signal_dspin_int_cmd_h_dec", X_SIZE-1, Y_SIZE, 3);
882   DspinSignals<dspin_int_rsp_width>*** signal_dspin_int_rsp_h_inc =
883      alloc_elems<DspinSignals<dspin_int_rsp_width> >("signal_dspin_int_rsp_h_inc", X_SIZE-1, Y_SIZE, 2);
884   DspinSignals<dspin_int_rsp_width>*** signal_dspin_int_rsp_h_dec =
885      alloc_elems<DspinSignals<dspin_int_rsp_width> >("signal_dspin_int_rsp_h_dec", X_SIZE-1, Y_SIZE, 2);
886
887   // Vertical inter-clusters INT network DSPIN
888   DspinSignals<dspin_int_cmd_width>*** signal_dspin_int_cmd_v_inc =
889      alloc_elems<DspinSignals<dspin_int_cmd_width> >("signal_dspin_int_cmd_v_inc", X_SIZE, Y_SIZE-1, 3);
890   DspinSignals<dspin_int_cmd_width>*** signal_dspin_int_cmd_v_dec =
891      alloc_elems<DspinSignals<dspin_int_cmd_width> >("signal_dspin_int_cmd_v_dec", X_SIZE, Y_SIZE-1, 3);
892   DspinSignals<dspin_int_rsp_width>*** signal_dspin_int_rsp_v_inc =
893      alloc_elems<DspinSignals<dspin_int_rsp_width> >("signal_dspin_int_rsp_v_inc", X_SIZE, Y_SIZE-1, 2);
894   DspinSignals<dspin_int_rsp_width>*** signal_dspin_int_rsp_v_dec =
895      alloc_elems<DspinSignals<dspin_int_rsp_width> >("signal_dspin_int_rsp_v_dec", X_SIZE, Y_SIZE-1, 2);
896
897   // Mesh boundaries INT network DSPIN
898   DspinSignals<dspin_int_cmd_width>**** signal_dspin_false_int_cmd_in =
899      alloc_elems<DspinSignals<dspin_int_cmd_width> >("signal_dspin_false_int_cmd_in", X_SIZE, Y_SIZE, 4, 3);
900   DspinSignals<dspin_int_cmd_width>**** signal_dspin_false_int_cmd_out =
901      alloc_elems<DspinSignals<dspin_int_cmd_width> >("signal_dspin_false_int_cmd_out", X_SIZE, Y_SIZE, 4, 3);
902   DspinSignals<dspin_int_rsp_width>**** signal_dspin_false_int_rsp_in =
903      alloc_elems<DspinSignals<dspin_int_rsp_width> >("signal_dspin_false_int_rsp_in", X_SIZE, Y_SIZE, 4, 2);
904   DspinSignals<dspin_int_rsp_width>**** signal_dspin_false_int_rsp_out =
905      alloc_elems<DspinSignals<dspin_int_rsp_width> >("signal_dspin_false_int_rsp_out", X_SIZE, Y_SIZE, 4, 2);
906
907
908   // Horizontal inter-clusters RAM network DSPIN
909   DspinSignals<dspin_ram_cmd_width>** signal_dspin_ram_cmd_h_inc =
910      alloc_elems<DspinSignals<dspin_ram_cmd_width> >("signal_dspin_ram_cmd_h_inc", X_SIZE-1, Y_SIZE);
911   DspinSignals<dspin_ram_cmd_width>** signal_dspin_ram_cmd_h_dec =
912      alloc_elems<DspinSignals<dspin_ram_cmd_width> >("signal_dspin_ram_cmd_h_dec", X_SIZE-1, Y_SIZE);
913   DspinSignals<dspin_ram_rsp_width>** signal_dspin_ram_rsp_h_inc =
914      alloc_elems<DspinSignals<dspin_ram_rsp_width> >("signal_dspin_ram_rsp_h_inc", X_SIZE-1, Y_SIZE);
915   DspinSignals<dspin_ram_rsp_width>** signal_dspin_ram_rsp_h_dec =
916      alloc_elems<DspinSignals<dspin_ram_rsp_width> >("signal_dspin_ram_rsp_h_dec", X_SIZE-1, Y_SIZE);
917
918   // Vertical inter-clusters RAM network DSPIN
919   DspinSignals<dspin_ram_cmd_width>** signal_dspin_ram_cmd_v_inc =
920      alloc_elems<DspinSignals<dspin_ram_cmd_width> >("signal_dspin_ram_cmd_v_inc", X_SIZE, Y_SIZE-1);
921   DspinSignals<dspin_ram_cmd_width>** signal_dspin_ram_cmd_v_dec =
922      alloc_elems<DspinSignals<dspin_ram_cmd_width> >("signal_dspin_ram_cmd_v_dec", X_SIZE, Y_SIZE-1);
923   DspinSignals<dspin_ram_rsp_width>** signal_dspin_ram_rsp_v_inc =
924      alloc_elems<DspinSignals<dspin_ram_rsp_width> >("signal_dspin_ram_rsp_v_inc", X_SIZE, Y_SIZE-1);
925   DspinSignals<dspin_ram_rsp_width>** signal_dspin_ram_rsp_v_dec =
926      alloc_elems<DspinSignals<dspin_ram_rsp_width> >("signal_dspin_ram_rsp_v_dec", X_SIZE, Y_SIZE-1);
927
928   // Mesh boundaries RAM network DSPIN
929   DspinSignals<dspin_ram_cmd_width>*** signal_dspin_false_ram_cmd_in =
930      alloc_elems<DspinSignals<dspin_ram_cmd_width> >("signal_dspin_false_ram_cmd_in", X_SIZE, Y_SIZE, 4);
931   DspinSignals<dspin_ram_cmd_width>*** signal_dspin_false_ram_cmd_out =
932      alloc_elems<DspinSignals<dspin_ram_cmd_width> >("signal_dspin_false_ram_cmd_out", X_SIZE, Y_SIZE, 4);
933   DspinSignals<dspin_ram_rsp_width>*** signal_dspin_false_ram_rsp_in =
934      alloc_elems<DspinSignals<dspin_ram_rsp_width> >("signal_dspin_false_ram_rsp_in", X_SIZE, Y_SIZE, 4);
935   DspinSignals<dspin_ram_rsp_width>*** signal_dspin_false_ram_rsp_out =
936      alloc_elems<DspinSignals<dspin_ram_rsp_width> >("signal_dspin_false_ram_rsp_out", X_SIZE, Y_SIZE, 4);
937
938   ////////////////////////////
939   //      Loader
940   ////////////////////////////
941   soclib::common::Loader *loader;
942
943#if USE_ALMOS
944   loader = new soclib::common::Loader (almos_bootloader_pathname,
945                                        almos_archinfo_pathname,
946                                        almos_kernel_pathname);
947#else
948   if (strcmp(soft_name, "") == 0)
949   {
950      loader = new soclib::common::Loader (dsoft_name);
951   }
952   else
953   {
954      loader = new soclib::common::Loader (soft_name, dsoft_name);
955   }
956#endif
957
958   // initialize memory with a value different than 0 (expose software errors
959   // dues to uninitialized data)
960   loader->memory_default(0xA0);
961
962   typedef soclib::common::GdbServer<soclib::common::Mips32ElIss> proc_iss;
963   proc_iss::set_loader(loader);
964
965   ////////////////////////////////////////
966   //  Instanciated Hardware Components
967   ////////////////////////////////////////
968
969   std::cout << std::endl << "External Bus and Peripherals" << std::endl << std::endl;
970
971   const size_t nb_iox_initiators = (cluster_iob0 != cluster_iob1) ? 5 : 4;
972   const size_t nb_iox_targets = (cluster_iob0 != cluster_iob1) ? 10 : 9;
973
974   // IOX network
975   VciIoxNetwork<vci_param_ext>* iox_network;
976   iox_network = new VciIoxNetwork<vci_param_ext>( "iox_network",
977                                                   maptab_iox,
978                                                   nb_iox_targets,
979                                                   nb_iox_initiators );
980
981   // Network Controller
982#if USE_NIC
983   VciMultiNic<vci_param_ext>*  mnic;
984   int nicMode = VciMultiNic<vci_param_ext>::NIC_MODE_SYNTHESIS;
985   mnic = new VciMultiNic<vci_param_ext>( "mnic",
986                                          IntTab(0, IOX_MNIC_TGT_ID),
987                                          maptab_iox,
988                                          NB_NIC_CHANNELS,
989                                          0,                // mac_4 address
990                                          0,                // mac_2 address
991                                          nicMode );
992
993   // Chained Buffer DMA controller
994   VciChbufDma<vci_param_ext>*  cdma;
995   cdma = new VciChbufDma<vci_param_ext>( "cdma",
996                                          maptab_iox,
997                                          IntTab(0, CDMA_LOCAL_SRCID),
998                                          IntTab(0, IOX_CDMA_TGT_ID),
999                                          64,          // burst size (bytes)
1000                                          2*NB_NIC_CHANNELS );
1001#else
1002   VciTargetError<vci_param_ext> merror_nic( "merror_nic",
1003                                             IntTab(0, IOX_MNIC_TGT_ID),
1004                                             maptab_iox );
1005
1006   VciTargetError<vci_param_ext> merror_dma( "merror_dma",
1007                                             IntTab(0, IOX_CDMA_TGT_ID),
1008                                             maptab_iox );
1009#endif
1010
1011   // Frame Buffer
1012   VciFrameBuffer<vci_param_ext>*  fbuf;
1013   fbuf = new VciFrameBuffer<vci_param_ext>( "fbuf",
1014                                             IntTab(0, IOX_FBUF_TGT_ID),
1015                                             maptab_iox,
1016                                             FBUF_X_SIZE, FBUF_Y_SIZE );
1017
1018   // Block Device
1019   // for AHCI
1020   // std::vector<std::string> filenames;
1021   // filenames.push_back(disk_name);            // one single disk
1022   VciBlockDeviceTsar<vci_param_ext>*  bdev;
1023   bdev = new VciBlockDeviceTsar<vci_param_ext>( "bdev",
1024                                                  maptab_iox,
1025                                                  IntTab(0, BDEV_LOCAL_SRCID),
1026                                                  IntTab(0, IOX_BDEV_TGT_ID),
1027                                                  disk_name,
1028                                                  512,        // block size
1029                                                  64,         // burst size (bytes)
1030                                                  0 );        // disk latency
1031
1032   // Multi-TTY controller
1033   std::vector<std::string> vect_names;
1034   for( size_t tid = 0 ; tid < NB_TTY_CHANNELS ; tid++ )
1035   {
1036      std::ostringstream term_name;
1037      term_name <<  "term" << tid;
1038      vect_names.push_back(term_name.str().c_str());
1039   }
1040   VciMultiTty<vci_param_ext>*  mtty;
1041   mtty = new VciMultiTty<vci_param_ext>( "mtty",
1042         IntTab(0, IOX_MTTY_TGT_ID),
1043         maptab_iox,
1044         vect_names);
1045
1046   // IOPIC
1047   VciIopic<vci_param_ext>* iopi;
1048   iopi = new VciIopic<vci_param_ext>( "iopi",
1049                                       maptab_iox,
1050                                       IntTab(0, IOPI_LOCAL_SRCID),
1051                                       IntTab(0, IOX_IOPI_TGT_ID),
1052                                       32 );        // number of input HWI
1053
1054   // Simhelper
1055   VciSimhelper<vci_param_ext>* simh;
1056   simh = new VciSimhelper<vci_param_ext>("simh",
1057                                          IntTab(0, IOX_SIMH_TGT_ID),
1058                                          maptab_iox );
1059
1060   // External ROM
1061   VciSimpleRom<vci_param_ext>* rom;
1062   rom = new VciSimpleRom<vci_param_ext>("rom",
1063                                          IntTab(0, IOX_ROM_TGT_ID),
1064                                          maptab_iox,
1065                                          *loader,
1066                                          X_WIDTH + Y_WIDTH );
1067
1068   // Clusters
1069   TsarIobCluster<vci_param_int,
1070                  vci_param_ext,
1071                  dspin_int_cmd_width,
1072                  dspin_int_rsp_width,
1073                  dspin_ram_cmd_width,
1074                  dspin_ram_rsp_width>* clusters[X_SIZE][Y_SIZE];
1075
1076#if USE_OPENMP
1077#pragma omp parallel
1078    {
1079#pragma omp for
1080#endif
1081        for(size_t i = 0; i  < (X_SIZE * Y_SIZE); i++)
1082        {
1083            size_t x = i / Y_SIZE;
1084            size_t y = i % Y_SIZE;
1085
1086#if USE_OPENMP
1087#pragma omp critical
1088            {
1089#endif
1090            std::cout << std::endl;
1091            std::cout << "Cluster_" << std::dec << x << "_" << y << std::endl;
1092            std::cout << std::endl;
1093
1094            const bool is_iob0 = (cluster(x, y) == cluster_iob0);
1095            const bool is_iob1 = (cluster(x, y) == cluster_iob1);
1096            const bool is_io_cluster = is_iob0 || is_iob1;
1097
1098            const int iox_iob_ini_id = is_iob0 ?
1099                IOX_IOB0_INI_ID :
1100                IOX_IOB1_INI_ID ;
1101            const int iox_iob_tgt_id = is_iob0 ?
1102                IOX_IOB0_TGT_ID :
1103                IOX_IOB1_TGT_ID ;
1104
1105            std::ostringstream sc;
1106            sc << "cluster_" << x << "_" << y;
1107            clusters[x][y] = new TsarIobCluster<vci_param_int,
1108                                                vci_param_ext,
1109                                                dspin_int_cmd_width,
1110                                                dspin_int_rsp_width,
1111                                                dspin_ram_cmd_width,
1112                                                dspin_ram_rsp_width>
1113            (
1114                sc.str().c_str(),
1115                NB_PROCS_MAX,
1116                NB_DMA_CHANNELS,
1117                x,
1118                y,
1119                X_SIZE,
1120                Y_SIZE,
1121
1122                P_WIDTH,
1123
1124                maptab_int,
1125                maptab_ram,
1126                maptab_iox,
1127
1128                X_WIDTH,
1129                Y_WIDTH,
1130                vci_srcid_width - X_WIDTH - Y_WIDTH,            // l_id width,
1131
1132                INT_MEMC_TGT_ID,
1133                INT_XICU_TGT_ID,
1134                INT_MDMA_TGT_ID,
1135                INT_DROM_TGT_ID,
1136                INT_IOBX_TGT_ID,
1137
1138                INT_PROC_INI_ID,
1139                INT_MDMA_INI_ID,
1140                INT_IOBX_INI_ID,
1141
1142                RAM_XRAM_TGT_ID,
1143
1144                RAM_MEMC_INI_ID,
1145                RAM_IOBX_INI_ID,
1146
1147                is_io_cluster,
1148                iox_iob_tgt_id,
1149                iox_iob_ini_id,
1150
1151                MEMC_WAYS,
1152                MEMC_SETS,
1153                L1_IWAYS,
1154                L1_ISETS,
1155                L1_DWAYS,
1156                L1_DSETS,
1157                XRAM_LATENCY,
1158                XCU_NB_HWI,
1159                XCU_NB_PTI,
1160                XCU_NB_WTI,
1161                XCU_NB_OUT,
1162
1163                distributed_boot,
1164
1165                *loader,
1166
1167                frozen_cycles,
1168                debug_from,
1169                debug_ok and (cluster(x, y) == debug_memc_id),
1170                debug_ok and (cluster(x, y) == (debug_proc_id >> P_WIDTH)),
1171                debug_ok and debug_iob
1172            );
1173
1174#if USE_OPENMP
1175            } // end critical
1176#endif
1177        } // end for
1178#if USE_OPENMP
1179    }
1180#endif
1181
1182    // disable all interfaces of the faulty CMD routers
1183    std::cout << "\n*** List of deactivated routers ***\n";
1184    for (std::vector<size_t>::iterator it = faulty_routers.begin();
1185         it != faulty_routers.end();
1186         ++it)
1187    {
1188       int ry = (*it) & ((1 << Y_WIDTH) - 1);
1189       int rx = (*it >> Y_WIDTH) & ((1 << X_WIDTH) - 1);
1190       int rt = (*it) >> (X_WIDTH + Y_WIDTH);
1191
1192       if (rt == 0)
1193       {
1194          std::cout << "Deactivate CMD router (" << rx << "," << ry << ")"
1195                    << std::endl;
1196          clusters[rx][ry]->int_router_cmd[0]->set_disable_mask(faulty_mask);
1197          continue;
1198       }
1199       if (rt == 1)
1200       {
1201          std::cout << "Deactivate RSP router (" << rx << "," << ry << ")"
1202                    << std::endl;
1203          clusters[rx][ry]->int_router_rsp[0]->set_disable_mask(faulty_mask);
1204          continue;
1205       }
1206       if (rt == 2)
1207       {
1208          std::cout << "Deactivate M2P router (" << rx << "," << ry << ")"
1209                    << std::endl;
1210          clusters[rx][ry]->int_router_cmd[1]->set_disable_mask(faulty_mask);
1211          continue;
1212       }
1213       if (rt == 3)
1214       {
1215          std::cout << "Deactivate P2M router (" << rx << "," << ry << ")"
1216                    << std::endl;
1217          clusters[rx][ry]->int_router_rsp[1]->set_disable_mask(faulty_mask);
1218          continue;
1219       }
1220       if (rt == 4)
1221       {
1222          std::cout << "Deactivate CLACK router (" << rx << "," << ry << ")"
1223                    << std::endl;
1224          clusters[rx][ry]->int_router_cmd[2]->set_disable_mask(faulty_mask);
1225          continue;
1226       }
1227    }
1228
1229    std::cout << std::endl;
1230
1231    ///////////////////////////////////////////////////////////////////////////////
1232    //     Net-list
1233    ///////////////////////////////////////////////////////////////////////////////
1234
1235    // IOX network connexion
1236    iox_network->p_clk                                   (signal_clk);
1237    iox_network->p_resetn                                (signal_resetn);
1238    iox_network->p_to_ini[IOX_IOB0_INI_ID]               (signal_vci_ini_iob0);
1239    iox_network->p_to_ini[IOX_BDEV_INI_ID]               (signal_vci_ini_bdev);
1240    iox_network->p_to_ini[IOX_CDMA_INI_ID]               (signal_vci_ini_cdma);
1241    iox_network->p_to_ini[IOX_IOPI_INI_ID]               (signal_vci_ini_iopi);
1242
1243    iox_network->p_to_tgt[IOX_IOB0_TGT_ID]               (signal_vci_tgt_iob0);
1244    iox_network->p_to_tgt[IOX_MTTY_TGT_ID]               (signal_vci_tgt_mtty);
1245    iox_network->p_to_tgt[IOX_FBUF_TGT_ID]               (signal_vci_tgt_fbuf);
1246    iox_network->p_to_tgt[IOX_MNIC_TGT_ID]               (signal_vci_tgt_mnic);
1247    iox_network->p_to_tgt[IOX_BDEV_TGT_ID]               (signal_vci_tgt_bdev);
1248    iox_network->p_to_tgt[IOX_CDMA_TGT_ID]               (signal_vci_tgt_cdma);
1249    iox_network->p_to_tgt[IOX_IOPI_TGT_ID]               (signal_vci_tgt_iopi);
1250    iox_network->p_to_tgt[IOX_SIMH_TGT_ID]               (signal_vci_tgt_simh);
1251    iox_network->p_to_tgt[IOX_ROM_TGT_ID]                (signal_vci_tgt_rom);
1252
1253    if (cluster_iob0 != cluster_iob1)
1254    {
1255        iox_network->p_to_ini[IOX_IOB1_INI_ID]           (signal_vci_ini_iob1);
1256        iox_network->p_to_tgt[IOX_IOB1_TGT_ID]           (signal_vci_tgt_iob1);
1257    }
1258
1259    // BDEV connexion
1260    bdev->p_clk                                          (signal_clk);
1261    bdev->p_resetn                                       (signal_resetn);
1262    bdev->p_irq                                          (signal_irq_bdev);
1263    bdev->p_vci_target                                   (signal_vci_tgt_bdev);
1264    bdev->p_vci_initiator                                (signal_vci_ini_bdev);
1265
1266    std::cout << "  - BDEV connected" << std::endl;
1267
1268    // FBUF connexion
1269    fbuf->p_clk                                          (signal_clk);
1270    fbuf->p_resetn                                       (signal_resetn);
1271    fbuf->p_vci                                          (signal_vci_tgt_fbuf);
1272
1273    std::cout << "  - FBUF connected" << std::endl;
1274
1275#if USE_NIC
1276    // MNIC connexion
1277    mnic->p_clk                                          (signal_clk);
1278    mnic->p_resetn                                       (signal_resetn);
1279    mnic->p_vci                                          (signal_vci_tgt_mnic);
1280    for ( size_t i=0 ; i<NB_NIC_CHANNELS ; i++ )
1281    {
1282         mnic->p_rx_irq[i]                               (signal_irq_mnic_rx[i]);
1283         mnic->p_tx_irq[i]                               (signal_irq_mnic_tx[i]);
1284    }
1285    std::cout << "  - MNIC connected" << std::endl;
1286
1287    // CDMA connexion
1288    cdma->p_clk                                          (signal_clk);
1289    cdma->p_resetn                                       (signal_resetn);
1290    cdma->p_vci_target                                   (signal_vci_tgt_cdma);
1291    cdma->p_vci_initiator                                (signal_vci_ini_cdma);
1292    for ( size_t i=0 ; i<(NB_NIC_CHANNELS*2) ; i++)
1293    {
1294        cdma->p_irq[i]                                   (signal_irq_cdma[i]);
1295    }
1296    std::cout << "  - CDMA connected" << std::endl;
1297
1298#else
1299    merror_nic.p_clk                                     (signal_clk);
1300    merror_nic.p_resetn                                  (signal_resetn);
1301    merror_nic.p_vci                                     (signal_vci_tgt_mnic);
1302
1303    merror_dma.p_clk                                     (signal_clk);
1304    merror_dma.p_resetn                                  (signal_resetn);
1305    merror_dma.p_vci                                     (signal_vci_tgt_cdma);
1306#endif
1307
1308    // MTTY connexion
1309    mtty->p_clk                                          (signal_clk);
1310    mtty->p_resetn                                       (signal_resetn);
1311    mtty->p_vci                                          (signal_vci_tgt_mtty);
1312    for ( size_t i=0 ; i<NB_TTY_CHANNELS ; i++ )
1313    {
1314        mtty->p_irq[i]                                   (signal_irq_mtty_rx[i]);
1315    }
1316    std::cout << "  - MTTY connected" << std::endl;
1317
1318    // IOPI connexion
1319    iopi->p_clk                                          (signal_clk);
1320    iopi->p_resetn                                       (signal_resetn);
1321    iopi->p_vci_target                                   (signal_vci_tgt_iopi);
1322    iopi->p_vci_initiator                                (signal_vci_ini_iopi);
1323    for ( size_t i=0 ; i<32 ; i++)
1324    {
1325       if     (i < NB_NIC_CHANNELS)    iopi->p_hwi[i] (signal_irq_mnic_rx[i]);
1326       else if(i < 2 )                 iopi->p_hwi[i] (signal_irq_false);
1327       else if(i < 2+NB_NIC_CHANNELS)  iopi->p_hwi[i] (signal_irq_mnic_tx[i-2]);
1328       else if(i < 4 )                 iopi->p_hwi[i] (signal_irq_false);
1329       else if(i < 4+NB_CMA_CHANNELS)  iopi->p_hwi[i] (signal_irq_cdma[i-4]);
1330       else if(i < 8)                  iopi->p_hwi[i] (signal_irq_false);
1331       else if(i < 9)                  iopi->p_hwi[i] (signal_irq_bdev);
1332       else if(i < 16)                 iopi->p_hwi[i] (signal_irq_false);
1333       else if(i < 16+NB_TTY_CHANNELS) iopi->p_hwi[i] (signal_irq_mtty_rx[i-16]);
1334       else                            iopi->p_hwi[i] (signal_irq_false);
1335    }
1336
1337    std::cout << "  - IOPIC connected" << std::endl;
1338
1339    // Simhelper connexion
1340    simh->p_clk(signal_clk);
1341    simh->p_resetn(signal_resetn);
1342    simh->p_vci(signal_vci_tgt_simh);
1343
1344    // External ROM connexion
1345    rom->p_clk(signal_clk);
1346    rom->p_resetn(signal_resetn);
1347    rom->p_vci(signal_vci_tgt_rom);
1348
1349    // IOB0 cluster connexion to IOX network
1350    (*clusters[0][0]->p_vci_iob_iox_ini) (signal_vci_ini_iob0);
1351    (*clusters[0][0]->p_vci_iob_iox_tgt) (signal_vci_tgt_iob0);
1352
1353    // IOB1 cluster connexion to IOX network
1354    // (only when there is more than 1 cluster)
1355    if ( cluster_iob0 != cluster_iob1 )
1356    {
1357        (*clusters[X_SIZE-1][Y_SIZE-1]->p_vci_iob_iox_ini) (signal_vci_ini_iob1);
1358        (*clusters[X_SIZE-1][Y_SIZE-1]->p_vci_iob_iox_tgt) (signal_vci_tgt_iob1);
1359    }
1360
1361    // All clusters Clock & RESET connexions
1362    for ( size_t x = 0; x < (X_SIZE); x++ )
1363    {
1364        for (size_t y = 0; y < Y_SIZE; y++)
1365        {
1366            clusters[x][y]->p_clk     (signal_clk);
1367            clusters[x][y]->p_resetn  (signal_resetn);
1368        }
1369    }
1370
1371   // Inter Clusters horizontal connections
1372   if (X_SIZE > 1)
1373   {
1374      for (size_t x = 0; x < (X_SIZE-1); x++)
1375      {
1376         for (size_t y = 0; y < Y_SIZE; y++)
1377         {
1378            for (size_t k = 0; k < 3; k++)
1379            {
1380               clusters[x][y]->p_dspin_int_cmd_out[EAST][k]      (signal_dspin_int_cmd_h_inc[x][y][k]);
1381               clusters[x+1][y]->p_dspin_int_cmd_in[WEST][k]     (signal_dspin_int_cmd_h_inc[x][y][k]);
1382               clusters[x][y]->p_dspin_int_cmd_in[EAST][k]       (signal_dspin_int_cmd_h_dec[x][y][k]);
1383               clusters[x+1][y]->p_dspin_int_cmd_out[WEST][k]    (signal_dspin_int_cmd_h_dec[x][y][k]);
1384            }
1385
1386            for (size_t k = 0; k < 2; k++)
1387            {
1388               clusters[x][y]->p_dspin_int_rsp_out[EAST][k]      (signal_dspin_int_rsp_h_inc[x][y][k]);
1389               clusters[x+1][y]->p_dspin_int_rsp_in[WEST][k]     (signal_dspin_int_rsp_h_inc[x][y][k]);
1390               clusters[x][y]->p_dspin_int_rsp_in[EAST][k]       (signal_dspin_int_rsp_h_dec[x][y][k]);
1391               clusters[x+1][y]->p_dspin_int_rsp_out[WEST][k]    (signal_dspin_int_rsp_h_dec[x][y][k]);
1392            }
1393
1394            clusters[x][y]->p_dspin_ram_cmd_out[EAST]      (signal_dspin_ram_cmd_h_inc[x][y]);
1395            clusters[x+1][y]->p_dspin_ram_cmd_in[WEST]     (signal_dspin_ram_cmd_h_inc[x][y]);
1396            clusters[x][y]->p_dspin_ram_cmd_in[EAST]       (signal_dspin_ram_cmd_h_dec[x][y]);
1397            clusters[x+1][y]->p_dspin_ram_cmd_out[WEST]    (signal_dspin_ram_cmd_h_dec[x][y]);
1398            clusters[x][y]->p_dspin_ram_rsp_out[EAST]      (signal_dspin_ram_rsp_h_inc[x][y]);
1399            clusters[x+1][y]->p_dspin_ram_rsp_in[WEST]     (signal_dspin_ram_rsp_h_inc[x][y]);
1400            clusters[x][y]->p_dspin_ram_rsp_in[EAST]       (signal_dspin_ram_rsp_h_dec[x][y]);
1401            clusters[x+1][y]->p_dspin_ram_rsp_out[WEST]    (signal_dspin_ram_rsp_h_dec[x][y]);
1402         }
1403      }
1404   }
1405
1406   std::cout << std::endl << "Horizontal connections established" << std::endl;
1407
1408   // Inter Clusters vertical connections
1409   if (Y_SIZE > 1)
1410   {
1411      for (size_t y = 0; y < (Y_SIZE-1); y++)
1412      {
1413         for (size_t x = 0; x < X_SIZE; x++)
1414         {
1415            for (size_t k = 0; k < 3; k++)
1416            {
1417               clusters[x][y]->p_dspin_int_cmd_out[NORTH][k]     (signal_dspin_int_cmd_v_inc[x][y][k]);
1418               clusters[x][y+1]->p_dspin_int_cmd_in[SOUTH][k]    (signal_dspin_int_cmd_v_inc[x][y][k]);
1419               clusters[x][y]->p_dspin_int_cmd_in[NORTH][k]      (signal_dspin_int_cmd_v_dec[x][y][k]);
1420               clusters[x][y+1]->p_dspin_int_cmd_out[SOUTH][k]   (signal_dspin_int_cmd_v_dec[x][y][k]);
1421            }
1422
1423            for (size_t k = 0; k < 2; k++)
1424            {
1425               clusters[x][y]->p_dspin_int_rsp_out[NORTH][k]     (signal_dspin_int_rsp_v_inc[x][y][k]);
1426               clusters[x][y+1]->p_dspin_int_rsp_in[SOUTH][k]    (signal_dspin_int_rsp_v_inc[x][y][k]);
1427               clusters[x][y]->p_dspin_int_rsp_in[NORTH][k]      (signal_dspin_int_rsp_v_dec[x][y][k]);
1428               clusters[x][y+1]->p_dspin_int_rsp_out[SOUTH][k]   (signal_dspin_int_rsp_v_dec[x][y][k]);
1429            }
1430
1431            clusters[x][y]->p_dspin_ram_cmd_out[NORTH]     (signal_dspin_ram_cmd_v_inc[x][y]);
1432            clusters[x][y+1]->p_dspin_ram_cmd_in[SOUTH]    (signal_dspin_ram_cmd_v_inc[x][y]);
1433            clusters[x][y]->p_dspin_ram_cmd_in[NORTH]      (signal_dspin_ram_cmd_v_dec[x][y]);
1434            clusters[x][y+1]->p_dspin_ram_cmd_out[SOUTH]   (signal_dspin_ram_cmd_v_dec[x][y]);
1435            clusters[x][y]->p_dspin_ram_rsp_out[NORTH]     (signal_dspin_ram_rsp_v_inc[x][y]);
1436            clusters[x][y+1]->p_dspin_ram_rsp_in[SOUTH]    (signal_dspin_ram_rsp_v_inc[x][y]);
1437            clusters[x][y]->p_dspin_ram_rsp_in[NORTH]      (signal_dspin_ram_rsp_v_dec[x][y]);
1438            clusters[x][y+1]->p_dspin_ram_rsp_out[SOUTH]   (signal_dspin_ram_rsp_v_dec[x][y]);
1439         }
1440      }
1441   }
1442
1443   std::cout << "Vertical connections established" << std::endl;
1444
1445   // East & West boundary cluster connections
1446   for (size_t y = 0; y < Y_SIZE; y++)
1447   {
1448      for (size_t k = 0; k < 3; k++)
1449      {
1450         clusters[0][y]->p_dspin_int_cmd_in[WEST][k]          (signal_dspin_false_int_cmd_in[0][y][WEST][k]);
1451         clusters[0][y]->p_dspin_int_cmd_out[WEST][k]         (signal_dspin_false_int_cmd_out[0][y][WEST][k]);
1452         clusters[X_SIZE-1][y]->p_dspin_int_cmd_in[EAST][k]   (signal_dspin_false_int_cmd_in[X_SIZE-1][y][EAST][k]);
1453         clusters[X_SIZE-1][y]->p_dspin_int_cmd_out[EAST][k]  (signal_dspin_false_int_cmd_out[X_SIZE-1][y][EAST][k]);
1454      }
1455
1456      for (size_t k = 0; k < 2; k++)
1457      {
1458         clusters[0][y]->p_dspin_int_rsp_in[WEST][k]          (signal_dspin_false_int_rsp_in[0][y][WEST][k]);
1459         clusters[0][y]->p_dspin_int_rsp_out[WEST][k]         (signal_dspin_false_int_rsp_out[0][y][WEST][k]);
1460         clusters[X_SIZE-1][y]->p_dspin_int_rsp_in[EAST][k]   (signal_dspin_false_int_rsp_in[X_SIZE-1][y][EAST][k]);
1461         clusters[X_SIZE-1][y]->p_dspin_int_rsp_out[EAST][k]  (signal_dspin_false_int_rsp_out[X_SIZE-1][y][EAST][k]);
1462      }
1463
1464     clusters[0][y]->p_dspin_ram_cmd_in[WEST]       (signal_dspin_false_ram_cmd_in[0][y][WEST]);
1465     clusters[0][y]->p_dspin_ram_cmd_out[WEST]      (signal_dspin_false_ram_cmd_out[0][y][WEST]);
1466     clusters[0][y]->p_dspin_ram_rsp_in[WEST]       (signal_dspin_false_ram_rsp_in[0][y][WEST]);
1467     clusters[0][y]->p_dspin_ram_rsp_out[WEST]      (signal_dspin_false_ram_rsp_out[0][y][WEST]);
1468
1469     clusters[X_SIZE-1][y]->p_dspin_ram_cmd_in[EAST]  (signal_dspin_false_ram_cmd_in[X_SIZE-1][y][EAST]);
1470     clusters[X_SIZE-1][y]->p_dspin_ram_cmd_out[EAST] (signal_dspin_false_ram_cmd_out[X_SIZE-1][y][EAST]);
1471     clusters[X_SIZE-1][y]->p_dspin_ram_rsp_in[EAST]  (signal_dspin_false_ram_rsp_in[X_SIZE-1][y][EAST]);
1472     clusters[X_SIZE-1][y]->p_dspin_ram_rsp_out[EAST] (signal_dspin_false_ram_rsp_out[X_SIZE-1][y][EAST]);
1473   }
1474
1475   std::cout << "East & West boundaries established" << std::endl;
1476
1477   // North & South boundary clusters connections
1478   for (size_t x = 0; x < X_SIZE; x++)
1479   {
1480      for (size_t k = 0; k < 3; k++)
1481      {
1482         clusters[x][0]->p_dspin_int_cmd_in[SOUTH][k]         (signal_dspin_false_int_cmd_in[x][0][SOUTH][k]);
1483         clusters[x][0]->p_dspin_int_cmd_out[SOUTH][k]        (signal_dspin_false_int_cmd_out[x][0][SOUTH][k]);
1484         clusters[x][Y_SIZE-1]->p_dspin_int_cmd_in[NORTH][k]  (signal_dspin_false_int_cmd_in[x][Y_SIZE-1][NORTH][k]);
1485         clusters[x][Y_SIZE-1]->p_dspin_int_cmd_out[NORTH][k] (signal_dspin_false_int_cmd_out[x][Y_SIZE-1][NORTH][k]);
1486      }
1487
1488      for (size_t k = 0; k < 2; k++)
1489      {
1490         clusters[x][0]->p_dspin_int_rsp_in[SOUTH][k]         (signal_dspin_false_int_rsp_in[x][0][SOUTH][k]);
1491         clusters[x][0]->p_dspin_int_rsp_out[SOUTH][k]        (signal_dspin_false_int_rsp_out[x][0][SOUTH][k]);
1492         clusters[x][Y_SIZE-1]->p_dspin_int_rsp_in[NORTH][k]  (signal_dspin_false_int_rsp_in[x][Y_SIZE-1][NORTH][k]);
1493         clusters[x][Y_SIZE-1]->p_dspin_int_rsp_out[NORTH][k] (signal_dspin_false_int_rsp_out[x][Y_SIZE-1][NORTH][k]);
1494      }
1495
1496      clusters[x][0]->p_dspin_ram_cmd_in[SOUTH]       (signal_dspin_false_ram_cmd_in[x][0][SOUTH]);
1497      clusters[x][0]->p_dspin_ram_cmd_out[SOUTH]      (signal_dspin_false_ram_cmd_out[x][0][SOUTH]);
1498      clusters[x][0]->p_dspin_ram_rsp_in[SOUTH]       (signal_dspin_false_ram_rsp_in[x][0][SOUTH]);
1499      clusters[x][0]->p_dspin_ram_rsp_out[SOUTH]      (signal_dspin_false_ram_rsp_out[x][0][SOUTH]);
1500
1501      clusters[x][Y_SIZE-1]->p_dspin_ram_cmd_in[NORTH]  (signal_dspin_false_ram_cmd_in[x][Y_SIZE-1][NORTH]);
1502      clusters[x][Y_SIZE-1]->p_dspin_ram_cmd_out[NORTH] (signal_dspin_false_ram_cmd_out[x][Y_SIZE-1][NORTH]);
1503      clusters[x][Y_SIZE-1]->p_dspin_ram_rsp_in[NORTH]  (signal_dspin_false_ram_rsp_in[x][Y_SIZE-1][NORTH]);
1504      clusters[x][Y_SIZE-1]->p_dspin_ram_rsp_out[NORTH] (signal_dspin_false_ram_rsp_out[x][Y_SIZE-1][NORTH]);
1505   }
1506
1507   std::cout << "North & South boundaries established" << std::endl << std::endl;
1508
1509   ////////////////////////////////////////////////////////
1510   //   Simulation
1511   ///////////////////////////////////////////////////////
1512
1513   sc_start(sc_core::sc_time(0, SC_NS));
1514
1515   signal_resetn = false;
1516   signal_irq_false = false;
1517
1518   // network boundaries signals
1519   for (size_t x = 0; x < X_SIZE ; x++)
1520   {
1521      for (size_t y = 0; y < Y_SIZE ; y++)
1522      {
1523         for (size_t a = 0; a < 4; a++)
1524         {
1525            for (size_t k = 0; k < 3; k++)
1526            {
1527               signal_dspin_false_int_cmd_in[x][y][a][k].write = false;
1528               signal_dspin_false_int_cmd_in[x][y][a][k].read = true;
1529               signal_dspin_false_int_cmd_out[x][y][a][k].write = false;
1530               signal_dspin_false_int_cmd_out[x][y][a][k].read = true;
1531            }
1532
1533            for (size_t k = 0; k < 2; k++)
1534            {
1535               signal_dspin_false_int_rsp_in[x][y][a][k].write = false;
1536               signal_dspin_false_int_rsp_in[x][y][a][k].read = true;
1537               signal_dspin_false_int_rsp_out[x][y][a][k].write = false;
1538               signal_dspin_false_int_rsp_out[x][y][a][k].read = true;
1539            }
1540
1541            signal_dspin_false_ram_cmd_in[x][y][a].write = false;
1542            signal_dspin_false_ram_cmd_in[x][y][a].read = true;
1543            signal_dspin_false_ram_cmd_out[x][y][a].write = false;
1544            signal_dspin_false_ram_cmd_out[x][y][a].read = true;
1545
1546            signal_dspin_false_ram_rsp_in[x][y][a].write = false;
1547            signal_dspin_false_ram_rsp_in[x][y][a].read = true;
1548            signal_dspin_false_ram_rsp_out[x][y][a].write = false;
1549            signal_dspin_false_ram_rsp_out[x][y][a].read = true;
1550         }
1551      }
1552   }
1553
1554#if USE_NIC == 0
1555   for (int i = 0; i < NB_NIC_CHANNELS; i++)
1556   {
1557       signal_irq_mnic_rx[i].write(false);
1558       signal_irq_mnic_tx[i].write(false);
1559   }
1560
1561   signal_vci_ini_cdma.cmdval.write(false);
1562   signal_vci_ini_cdma.rspack.write(true);
1563   for (int i = 0; i < (NB_NIC_CHANNELS*2); i++)
1564   {
1565       signal_irq_cdma[i].write(false);
1566   }
1567#endif
1568
1569   sc_start(sc_core::sc_time(1, SC_NS));
1570   signal_resetn = true;
1571
1572   // simulation loop
1573   struct timeval t1, t2;
1574
1575   // cycles between stats
1576   const size_t stats_period = 150000;
1577   const size_t simul_period = debug_ok ? debug_period : stats_period;
1578
1579   for (size_t n = 0; n < ncycles; n += simul_period)
1580   {
1581      // stats display
1582      if((n % stats_period) == 0)
1583      {
1584         if (n > 0)
1585         {
1586            gettimeofday(&t2, NULL);
1587
1588            uint64_t ms1 = (uint64_t) t1.tv_sec  * 1000ULL +
1589               (uint64_t) t1.tv_usec / 1000;
1590            uint64_t ms2 = (uint64_t) t2.tv_sec  * 1000ULL +
1591               (uint64_t) t2.tv_usec / 1000;
1592            std::cerr << "### cycle = " << std::dec << n << " / frequency (Khz) = "
1593               << (double) stats_period / (double) (ms2 - ms1) << std::endl;
1594         }
1595
1596         gettimeofday(&t1, NULL);
1597      }
1598
1599      // Monitor a specific address for one L1 cache
1600      // clusters[1][1]->proc[0]->cache_monitor(0x50090ULL);
1601
1602      // Monitor a specific address for one L2 cache
1603      // clusters[0][0]->memc->cache_monitor( 0x170000ULL);
1604
1605      // Monitor a specific address for one XRAM
1606      // if (n == 3000000) clusters[0][0]->xram->start_monitor( 0x170000ULL , 64);
1607
1608      if (debug_ok and (n > debug_from) and (n % debug_period == 0))
1609      {
1610         std::cout << "****************** cycle " << std::dec << n ;
1611         std::cout << " ************************************************" << std::endl;
1612
1613#if 0
1614         for (int x = 0; x < X_SIZE; ++x)
1615         {
1616            for (int y = 0; y < Y_SIZE; ++y)
1617            {
1618               clusters[x][y]->int_router_cmd[0]->print_trace();
1619               clusters[x][y]->int_router_rsp[0]->print_trace();
1620            }
1621         }
1622#endif
1623
1624         // trace proc[debug_proc_id]
1625         if ( debug_proc_id != 0xFFFFFFFF )
1626         {
1627            size_t l          = debug_proc_id & ((1 << P_WIDTH) - 1);
1628            size_t cluster_xy = debug_proc_id >> P_WIDTH ;
1629            size_t x          = cluster_xy >> Y_WIDTH;
1630            size_t y          = cluster_xy & ((1 << Y_WIDTH) - 1);
1631
1632            clusters[x][y]->proc[l]->print_trace(1);
1633            std::ostringstream proc_signame;
1634            proc_signame << "[SIG]PROC_" << x << "_" << y << "_" << l ;
1635            clusters[x][y]->signal_int_vci_ini_proc[l].print_trace(proc_signame.str());
1636
1637            clusters[x][y]->xicu->print_trace(l);
1638            std::ostringstream xicu_signame;
1639            xicu_signame << "[SIG]XICU_" << x << "_" << y;
1640            clusters[x][y]->signal_int_vci_tgt_xicu.print_trace(xicu_signame.str());
1641
1642            //              clusters[x][y]->mdma->print_trace();
1643            //              std::ostringstream mdma_signame;
1644            //              mdma_signame << "[SIG]MDMA_" << x << "_" << y;
1645            //              clusters[x][y]->signal_int_vci_tgt_mdma.print_trace(mdma_signame.str());
1646
1647            if( clusters[x][y]->signal_proc_it[l].read() )
1648               std::cout << "### IRQ_PROC_" << std::dec
1649                  << x << "_" << y << "_" << l << " ACTIVE" << std::endl;
1650         }
1651
1652         // trace memc[debug_memc_id]
1653         if ( debug_memc_id != 0xFFFFFFFF )
1654         {
1655            size_t x = debug_memc_id >> Y_WIDTH;
1656            size_t y = debug_memc_id & ((1 << Y_WIDTH) - 1);
1657
1658            clusters[x][y]->memc->print_trace(0);
1659            std::ostringstream smemc_tgt;
1660            smemc_tgt << "[SIG]MEMC_TGT_" << x << "_" << y;
1661            clusters[x][y]->signal_int_vci_tgt_memc.print_trace(smemc_tgt.str());
1662            std::ostringstream smemc_ini;
1663            smemc_ini << "[SIG]MEMC_INI_" << x << "_" << y;
1664            clusters[x][y]->signal_ram_vci_ini_memc.print_trace(smemc_ini.str());
1665
1666            clusters[x][y]->xram->print_trace();
1667            std::ostringstream sxram_tgt;
1668            sxram_tgt << "[SIG]XRAM_TGT_" << x << "_" << y;
1669            clusters[x][y]->signal_ram_vci_tgt_xram.print_trace(sxram_tgt.str());
1670         }
1671
1672
1673         // trace XRAM and XRAM network routers in cluster[debug_xram_id]
1674         if ( debug_xram_id != 0xFFFFFFFF )
1675         {
1676            size_t x = debug_xram_id >> Y_WIDTH;
1677            size_t y = debug_xram_id & ((1 << Y_WIDTH) - 1);
1678
1679            clusters[x][y]->xram->print_trace();
1680            std::ostringstream sxram_tgt;
1681            sxram_tgt << "[SIG]XRAM_TGT_" << x << "_" << y;
1682            clusters[x][y]->signal_ram_vci_tgt_xram.print_trace(sxram_tgt.str());
1683
1684            clusters[x][y]->ram_router_cmd->print_trace();
1685            clusters[x][y]->ram_router_rsp->print_trace();
1686         }
1687
1688         // trace iob, iox and external peripherals
1689         if ( debug_iob )
1690         {
1691            clusters[0][0]->iob->print_trace();
1692            clusters[X_SIZE-1][Y_SIZE-1]->iob->print_trace();
1693            //              clusters[0][0]->signal_int_vci_tgt_iobx.print_trace( "[SIG]IOB0_INT_TGT");
1694            //              clusters[0][0]->signal_int_vci_ini_iobx.print_trace( "[SIG]IOB0_INT_INI");
1695            //              clusters[0][0]->signal_ram_vci_ini_iobx.print_trace( "[SIG]IOB0_RAM_INI");
1696
1697            signal_vci_ini_iob0.print_trace("[SIG]IOB0_IOX_INI");
1698            signal_vci_tgt_iob0.print_trace("[SIG]IOB0_IOX_TGT");
1699
1700            // mtty->print_trace();
1701            // signal_vci_tgt_mtty.print_trace("[SIG]IOX_MTTY_TGT");
1702
1703            bdev->print_trace();
1704            signal_vci_tgt_bdev.print_trace("[SIG]BDEV_TGT");
1705            signal_vci_ini_bdev.print_trace("[SIG]BDEV_INI");
1706
1707            // mnic->print_trace();
1708            // signal_vci_tgt_mnic.print_trace("[SIG]MNIC_TGT");
1709
1710            // cdma->print_trace();
1711            // signal_vci_tgt_cdma.print_trace("[SIG]IOX_CDMA_TGT");
1712            // signal_vci_ini_cdma.print_trace("[SIG]IOX_CDMA_INI");
1713
1714            // fbuf->print_trace();
1715            // signal_vci_tgt_fbuf.print_trace("[SIG]FBUF");
1716
1717            iopi->print_trace();
1718            signal_vci_ini_iopi.print_trace("[SIG]IOPI_INI");
1719            signal_vci_tgt_iopi.print_trace("[SIG]IOPI_TGT");
1720
1721            signal_vci_tgt_simh.print_trace("[SIG]SIMH_TGT");
1722
1723            iox_network->print_trace();
1724
1725            // interrupts
1726            if (signal_irq_bdev)       std::cout << "### IRQ_BDEV ACTIVE"       << std::endl;
1727            if (signal_irq_mtty_rx[0]) std::cout << "### IRQ_MTTY ACTIVE"       << std::endl;
1728            if (signal_irq_mnic_rx[0]) std::cout << "### IRQ_MNIC_RX[0] ACTIVE" << std::endl;
1729            if (signal_irq_mnic_rx[1]) std::cout << "### IRQ_MNIC_RX[1] ACTIVE" << std::endl;
1730            if (signal_irq_mnic_tx[0]) std::cout << "### IRQ_MNIC_TX[0] ACTIVE" << std::endl;
1731            if (signal_irq_mnic_tx[1]) std::cout << "### IRQ_MNIC_TX[1] ACTIVE" << std::endl;
1732         }
1733      }
1734
1735      sc_start(sc_core::sc_time(simul_period, SC_NS));
1736   }
1737   return EXIT_SUCCESS;
1738}
1739
1740int sc_main (int argc, char *argv[])
1741{
1742   try {
1743      return _main(argc, argv);
1744   } catch (soclib::exception::RunTimeError &e) {
1745      std::cout << "RunTimeError: " << e.what() << std::endl;
1746   } catch (std::exception &e) {
1747      std::cout << e.what() << std::endl;
1748   } catch (...) {
1749      std::cout << "Unknown exception occured" << std::endl;
1750      throw;
1751   }
1752   return 1;
1753}
1754
1755
1756// Local Variables:
1757// tab-width: 3
1758// c-basic-offset: 3
1759// c-file-offsets:((innamespace . 0)(inline-open . 0))
1760// indent-tabs-mode: nil
1761// End:
1762
1763// vim: filetype=cpp:expandtab:shiftwidth=3:tabstop=3:softtabstop=3
Note: See TracBrowser for help on using the repository browser.