source: trunk/platforms/tsar_generic_iob/top.cpp @ 972

Last change on this file since 972 was 972, checked in by alain, 9 years ago

Modify the tsar_generic_iob platform:
The vci_multi_dma component replicated in all cluster is replaced by a vci_mwmr_dma component.
This new component supports all hardware coprocessors respection the "coproc" interface.
Amongst the available coprocessors (defined in the SocLib? "coprocessor_components" directory)
the MWR_CPY coprocessor provide an improved memory copy service throughput x 2).

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