Changeset 748


Ignore:
Timestamp:
Jul 10, 2014, 2:35:05 PM (10 years ago)
Author:
cfuguet
Message:

reconfiguration: tsar_generic_iob distributed boot

  • Introducing optional distributed boot in the tsar_generic_iob platform.
  • To support this, a distributed boot ROM is instantiated in each cluster.
  • Physical address extension register for instructions and data of L1 caches is initialized with local cluster index when distributed boot is activated.
Location:
branches/reconfiguration/platforms/tsar_generic_iob
Files:
10 added
6 edited

Legend:

Unmodified
Added
Removed
  • branches/reconfiguration/platforms/tsar_generic_iob/arch.py

    r747 r748  
    88#   author : Alain Greiner
    99#######################################################################################
    10 #  This file contains a mapping generator for the "tsar_generic_iob" platform. 
     10#  This file contains a mapping generator for the "tsar_generic_iob" platform.
    1111#  This includes both the hardware architecture (clusters, processors, peripherals,
    1212#  physical space segmentation) and the mapping of all kernel objects (global vsegs).
     
    4242
    4343    nb_ttys           = 1
    44     nb_nics           = 2 
     44    nb_nics           = 2
    4545    fbf_width         = 1024
    4646    x_io              = 0
     
    5353    peri_increment    = 0x10000
    5454    distributed_ptabs = True
    55                  
     55
    5656    ### parameters checking
    5757
    5858    assert( nb_procs <= 4 )
    5959
    60     assert( (x_size == 1) or (x_size == 2) or (x_size == 4) 
     60    assert( (x_size == 1) or (x_size == 2) or (x_size == 4)
    6161             or (y_size == 8) or (x_size == 16) )
    6262
    63     assert( (y_size == 1) or (y_size == 2) or (y_size == 4) 
     63    assert( (y_size == 1) or (y_size == 2) or (y_size == 4)
    6464             or (y_size == 8) or (y_size == 16) )
    6565
     
    7070
    7171    platform_name  = 'tsar_iob_%d_%d_%d' % ( x_size, y_size, nb_procs )
    72    
     72
    7373    ### define physical segments
    7474
    75     ram_base = 0x0000000000
    76     ram_size = 0x4000000                   # 64 Mbytes
    77 
    78     xcu_base = 0x00B0000000
    79     xcu_size = 0x1000                      # 4 Kbytes
    80 
    81     dma_base = 0x00B1000000
    82     dma_size = 0x1000 * nb_procs           # 4 Kbytes * nb_procs
    83 
    84     mmc_base = 0x00B2000000
    85     mmc_size = 0x1000                      # 4 Kbytes
     75    ram_base  = 0x0000000000
     76    ram_size  = 0x4000000                  # 64 Mbytes
     77
     78    xcu_base  = 0x00B0000000
     79    xcu_size  = 0x1000                     # 4 Kbytes
     80
     81    dma_base  = 0x00B1000000
     82    dma_size  = 0x1000 * nb_procs          # 4 Kbytes * nb_procs
     83
     84    mmc_base  = 0x00B2000000
     85    mmc_size  = 0x1000                     # 4 Kbytes
     86
     87    rom_base  = 0x00BFC00000
     88    rom_size  = 0x8000                     # 32 Kbytes
    8689
    8790    offset_io = ((x_io << y_width) + y_io) << (paddr_width - x_width - y_width)
     
    106109
    107110    iob_base  = 0x00BE000000 + offset_io
    108     iob_size  = 0x1000                     # 4kbytes
    109 
    110     rom_base  = 0x00BFC00000 + offset_io
    111     rom_size  = 0x4000                     # 16 Kbytes
     111    iob_size  = 0x1000                     # 4 kbytes
     112
     113    ### GIET_VM specifics virtual segments
    112114
    113115    ### define  bootloader vsegs base addresses
     
    117119
    118120    boot_code_vbase      = 0x00040000      # ident
    119     boot_code_size       = 0x00020000      # 128 Kbytes 
    120  
     121    boot_code_size       = 0x00020000      # 128 Kbytes
     122
    121123    boot_data_vbase      = 0x00060000      # ident
    122124    boot_data_size       = 0x00010000      # 64 Kbytes
     
    125127    boot_buffer_size     = 0x00060000      # 384 Kbytes
    126128
    127     boot_stack_vbase     = 0x000D0000      # ident
    128     boot_stack_size      = 0x00050000      # 320 Kbytes
     129    boot_stack_vbase     = 0x03F00000      # ident
     130    boot_stack_size      = 0x00100000      # 1 Mbytes
    129131
    130132    ### define kernel vsegs base addresses
    131133
    132     kernel_code_vbase    = 0x80000000           
     134    kernel_code_vbase    = 0x80000000
    133135    kernel_code_size     = 0x00020000      # 128 Kbytes
    134136
     
    147149    ### create mapping
    148150
    149     mapping = Mapping( name           = platform_name, 
    150                        x_size         = x_size,       
    151                        y_size         = y_size,       
    152                        procs_max      = nb_procs,     
    153                        x_width        = x_width,       
    154                        y_width        = y_width,       
    155                        paddr_width    = paddr_width,   
    156                        coherence      = True,         
    157                        irq_per_proc   = irq_per_proc, 
    158                        use_ramdisk    = use_ramdisk, 
    159                        x_io           = x_io,         
     151    mapping = Mapping( name           = platform_name,
     152                       x_size         = x_size,
     153                       y_size         = y_size,
     154                       procs_max      = nb_procs,
     155                       x_width        = x_width,
     156                       y_width        = y_width,
     157                       paddr_width    = paddr_width,
     158                       coherence      = True,
     159                       irq_per_proc   = irq_per_proc,
     160                       use_ramdisk    = use_ramdisk,
     161                       x_io           = x_io,
    160162                       y_io           = y_io,
    161                        peri_increment = peri_increment, 
    162                        ram_base       = ram_base, 
    163                        ram_size       = ram_size )         
     163                       peri_increment = peri_increment,
     164                       ram_base       = ram_base,
     165                       ram_size       = ram_size )
    164166
    165167    ###  external peripherals (accessible in cluster[0,0] only for this mapping)
     
    171173    tty = mapping.addPeriph( 'TTY', base = tty_base, size = tty_size, ptype = 'TTY', channels = nb_ttys )
    172174
    173     nic = mapping.addPeriph( 'NIC', base = nic_base, size = nic_size, ptype = 'NIC', channels = nb_nics ) 
     175    nic = mapping.addPeriph( 'NIC', base = nic_base, size = nic_size, ptype = 'NIC', channels = nb_nics )
    174176
    175177    cma = mapping.addPeriph( 'CMA', base = cma_base, size = cma_size, ptype = 'CMA', channels = 2*nb_nics )
    176178
    177179    fbf = mapping.addPeriph( 'FBF', base = fbf_base, size = fbf_size, ptype = 'FBF', arg = fbf_width )
    178 
    179     rom = mapping.addPeriph( 'ROM', base = rom_base, size = rom_size, ptype = 'ROM' )
    180180
    181181    pic = mapping.addPeriph( 'PIC', base = pic_base, size = pic_size, ptype = 'PIC', channels = 32 )
     
    196196    mapping.addIrq( pic, index = 9, isrtype = 'ISR_TTY_RX', channel = 0 )
    197197
    198     ### hardware components replicated in all clusters   
     198    ### hardware components replicated in all clusters
    199199
    200200    for x in xrange( x_size ):
     
    205205            ram = mapping.addRam( 'RAM', base = ram_base + offset, size = ram_size )
    206206
    207             mmc = mapping.addPeriph( 'MMC', base = mmc_base + offset, size = mmc_size, 
     207            mmc = mapping.addPeriph( 'MMC', base = mmc_base + offset, size = mmc_size,
    208208                                     ptype = 'MMC' )
    209209
    210             dma = mapping.addPeriph( 'DMA', base = dma_base + offset, size = dma_size, 
    211                                      ptype = 'DMA', channels = nb_procs ) 
    212 
    213             xcu = mapping.addPeriph( 'XCU', base = xcu_base + offset, size = xcu_size, 
     210            dma = mapping.addPeriph( 'DMA', base = dma_base + offset, size = dma_size,
     211                                     ptype = 'DMA', channels = nb_procs )
     212
     213            xcu = mapping.addPeriph( 'XCU', base = xcu_base + offset, size = xcu_size,
    214214                                     ptype = 'XCU', channels = nb_procs * irq_per_proc, arg = 16 )
     215
     216            rom = mapping.addPeriph( 'ROM', base = rom_base + offset, size = rom_size,
     217                                     ptype = 'ROM' )
    215218
    216219            # MMC IRQ replicated in all clusters
     
    221224                mapping.addProc( x, y, p )
    222225
    223     ### global vsegs for boot_loader / identity mapping
    224 
    225     mapping.addGlobal( 'seg_boot_mapping', boot_mapping_vbase, boot_mapping_size,
    226                        'C_W_', vtype = 'BLOB'  , x = 0, y = 0, pseg = 'RAM',
    227                        identity = True )
    228 
    229     mapping.addGlobal( 'seg_boot_code', boot_code_vbase, boot_code_size,
    230                        'CXW_', vtype = 'BUFFER', x = 0, y = 0, pseg = 'RAM',
    231                        identity = True )
    232 
    233     mapping.addGlobal( 'seg_boot_data', boot_data_vbase, boot_data_size,
    234                        'C_W_', vtype = 'BUFFER', x = 0, y = 0, pseg = 'RAM',
    235                        identity = True )
    236 
    237     mapping.addGlobal( 'seg_boot_buffer', boot_buffer_vbase, boot_buffer_size,
    238                        'C_W_', vtype = 'BUFFER', x = 0, y = 0, pseg = 'RAM',
    239                        identity = True )
    240 
    241     mapping.addGlobal( 'seg_boot_stack', boot_stack_vbase, boot_stack_size,
    242                        'C_W_', vtype = 'BUFFER', x = 0, y = 0, pseg = 'RAM',
    243                        identity = True )
    244 
    245     ### the code global vsegs for kernel can be replicated in all clusters
    246     ### if the page tables are distributed in all clusters.
     226    ### global vsegs for boot_loader / identity mapping
     227
     228    mapping.addGlobal( 'seg_boot_mapping'  , boot_mapping_vbase  , boot_mapping_size  , 'C_W_',
     229                       vtype = 'BLOB'  , x = 0, y = 0, pseg = 'RAM', identity = True )
     230
     231    mapping.addGlobal( 'seg_boot_code'     , boot_code_vbase     , boot_code_size     , 'CXW_',
     232                       vtype = 'BUFFER', x = 0, y = 0, pseg = 'RAM', identity = True )
     233
     234    mapping.addGlobal( 'seg_boot_data'     , boot_data_vbase     , boot_data_size     , 'C_W_',
     235                       vtype = 'BUFFER', x = 0, y = 0, pseg = 'RAM', identity = True )
     236
     237    mapping.addGlobal( 'seg_boot_buffer'   , boot_buffer_vbase   , boot_buffer_size   , 'C_W_',
     238                       vtype = 'BUFFER', x = 0, y = 0, pseg = 'RAM', identity = True )
     239
     240    mapping.addGlobal( 'seg_boot_stack'    , boot_stack_vbase    , boot_stack_size    , 'C_W_',
     241                       vtype = 'BUFFER', x = 0, y = 0, pseg = 'RAM', identity = True )
     242
     243    ### global vsegs for kernel
    247244
    248245    if distributed_ptabs:
     
    261258        mapping.addGlobal( 'seg_kernel_code', kernel_code_vbase, kernel_code_size,
    262259                           'CXW_', vtype = 'ELF', x = 0 , y = 0 , pseg = 'RAM',
    263                             binpath = 'build/kernel/kernel.elf', local = False )
     260                           binpath = 'build/kernel/kernel.elf' )
    264261
    265262        mapping.addGlobal( 'seg_kernel_init', kernel_init_vbase, kernel_init_size,
    266263                           'CXW_', vtype = 'ELF', x = 0 , y = 0 , pseg = 'RAM',
    267                            binpath = 'build/kernel/kernel.elf', local = False )
    268 
    269     ### shared global vsegs for kernel
    270 
    271     mapping.addGlobal( 'seg_kernel_data', kernel_data_vbase, kernel_data_size,
    272                        'C_W_', vtype = 'ELF', x = 0, y = 0, pseg = 'RAM',
    273                        binpath = 'build/kernel/kernel.elf', local = False )
    274 
    275     mapping.addGlobal( 'seg_kernel_uncdata', kernel_uncdata_vbase, kernel_uncdata_size,
    276                        '__W_', vtype = 'ELF', x = 0, y = 0, pseg = 'RAM',
    277                        binpath = 'build/kernel/kernel.elf', local = False )
     264                           binpath = 'build/kernel/kernel.elf' )
     265
     266    mapping.addGlobal( 'seg_kernel_data'   , kernel_data_vbase   , kernel_data_size   , 'C_W_',
     267                       vtype = 'ELF'   , x = 0, y = 0, pseg = 'RAM', binpath = 'build/kernel/kernel.elf' )
     268
     269    mapping.addGlobal( 'seg_kernel_uncdata', kernel_uncdata_vbase, kernel_uncdata_size, '__W_',
     270                       vtype = 'ELF'   , x = 0, y = 0, pseg = 'RAM', binpath = 'build/kernel/kernel.elf' )
    278271
    279272    ### global vsegs for external peripherals / identity mapping
    280273
    281     mapping.addGlobal( 'seg_iob', iob_base, iob_size, '__W_',
    282                        vtype = 'PERI', x = 0, y = 0, pseg = 'IOB',
    283                        identity = True )
    284 
    285     mapping.addGlobal( 'seg_bdv', bdv_base, bdv_size, '__W_',
    286                        vtype = 'PERI', x = 0, y = 0, pseg = 'BDV',
    287                        identity = True )
    288 
    289     mapping.addGlobal( 'seg_tty', tty_base, tty_size, '__W_',
    290                        vtype = 'PERI', x = 0, y = 0, pseg = 'TTY',
    291                        identity = True )
    292 
    293     mapping.addGlobal( 'seg_nic', nic_base, nic_size, '__W_',
    294                        vtype = 'PERI', x = 0, y = 0, pseg = 'NIC',
    295                        identity = True )
    296 
    297     mapping.addGlobal( 'seg_cma', cma_base, cma_size, '__W_',
    298                        vtype = 'PERI', x = 0, y = 0, pseg = 'CMA',
    299                        identity = True )
    300 
    301     mapping.addGlobal( 'seg_fbf', fbf_base, fbf_size, '__W_',
    302                        vtype = 'PERI', x = 0, y = 0, pseg = 'FBF',
    303                        identity = True )
    304 
    305     mapping.addGlobal( 'seg_pic', pic_base, pic_size, '__W_',
    306                        vtype = 'PERI', x = 0, y = 0, pseg = 'PIC',
    307                        identity = True )
    308 
    309     mapping.addGlobal( 'seg_rom', rom_base, rom_size, 'CXW_',
    310                        vtype = 'PERI', x = 0, y = 0, pseg = 'ROM',
    311                        identity = True )
    312 
    313     ### global vsegs for internal peripherals, and for schedulers
     274    mapping.addGlobal( 'seg_iob', iob_base, iob_size, '__W_',
     275                       vtype = 'PERI', x = 0, y = 0, pseg = 'IOB', identity = True )
     276
     277    mapping.addGlobal( 'seg_bdv', bdv_base, bdv_size, '__W_',
     278                       vtype = 'PERI', x = 0, y = 0, pseg = 'BDV', identity = True )
     279
     280    mapping.addGlobal( 'seg_tty', tty_base, tty_size, '__W_',
     281                       vtype = 'PERI', x = 0, y = 0, pseg = 'TTY', identity = True )
     282
     283    mapping.addGlobal( 'seg_nic', nic_base, nic_size, '__W_',
     284                       vtype = 'PERI', x = 0, y = 0, pseg = 'NIC', identity = True )
     285
     286    mapping.addGlobal( 'seg_cma', cma_base, cma_size, '__W_',
     287                       vtype = 'PERI', x = 0, y = 0, pseg = 'CMA', identity = True )
     288
     289    mapping.addGlobal( 'seg_fbf', fbf_base, fbf_size, '__W_',
     290                       vtype = 'PERI', x = 0, y = 0, pseg = 'FBF', identity = True )
     291
     292    mapping.addGlobal( 'seg_pic', pic_base, pic_size, '__W_',
     293                       vtype = 'PERI', x = 0, y = 0, pseg = 'PIC', identity = True )
     294
     295    ### global vsegs for internal peripherals, and for schedulers
    314296    ### name is indexed by (x,y) / vbase address is incremented by (cluster_xy * peri_increment)
    315297
     
    319301            offset     = cluster_xy * peri_increment
    320302
     303            mapping.addGlobal( 'seg_rom_%d_%d' %(x,y), rom_base + offset, rom_size,
     304                               'CX__', vtype = 'PERI' , x = x , y = y , pseg = 'ROM' )
     305
    321306            mapping.addGlobal( 'seg_xcu_%d_%d' %(x,y), xcu_base + offset, xcu_size,
    322307                               '__W_', vtype = 'PERI' , x = x , y = y , pseg = 'XCU' )
     
    348333
    349334#   print mapping.giet_vsegs()
    350                      
     335
    351336
    352337# Local Variables:
  • branches/reconfiguration/platforms/tsar_generic_iob/top.cpp

    r747 r748  
    99// an external bus (i.e. Hypertransport) to access 7 external peripherals:
    1010//
    11 // - BROM : boot ROM
    1211// - FBUF : Frame Buffer
    1312// - MTTY : multi TTY (one channel)
     
    4443// - IOPIC HWI[8]       connected to IRQ_BDEV
    4544// - IOPIC HWI[9]       connected to IRQ_TTY_RX[0]
     45// - IOPIC HWI[31:9]    unused       (grounded)
    4646//
    4747// Besides the external peripherals, each cluster contains one XICU component,
     
    228228//////////////////////i/////////////////////////////////////
    229229
    230 #define MAX_FROZEN_CYCLES     20000000
     230#define MAX_FROZEN_CYCLES     200000
    231231
    232232/////////////////////////////////////////////////////////
     
    276276#define INT_XICU_TGT_ID              1
    277277#define INT_MDMA_TGT_ID              2
    278 #define INT_IOBX_TGT_ID              3
     278#define INT_BROM_TGT_ID              3
     279#define INT_IOBX_TGT_ID              4
    279280
    280281#define INT_PROC_INI_ID              0   // from 0 to (NB_PROCS_MAX-1)
     
    299300#define IOX_MNIC_TGT_ID              2
    300301#define IOX_CDMA_TGT_ID              3
    301 #define IOX_BROM_TGT_ID              4
    302 #define IOX_MTTY_TGT_ID              5
    303 #define IOX_IOPI_TGT_ID              6
    304 #define IOX_IOB0_TGT_ID              7
    305 #define IOX_IOB1_TGT_ID              8
     302#define IOX_MTTY_TGT_ID              4
     303#define IOX_IOPI_TGT_ID              5
     304#define IOX_IOB0_TGT_ID              6
     305#define IOX_IOB1_TGT_ID              7
    306306
    307307#define IOX_BDEV_INI_ID              0
     
    349349         if ((strcmp(argv[n],"-NCYCLES") == 0) && (n+1<argc))
    350350         {
    351             ncycles = atoi(argv[n+1]);
     351            ncycles = strtol(argv[n+1], NULL, 0);
    352352         }
    353353         else if ((strcmp(argv[n],"-SOFT") == 0) && (n+1<argc) )
     
    358358         {
    359359            debug_ok = true;
    360             debug_from = atoi(argv[n+1]);
     360            debug_from = strtol(argv[n+1], NULL, 0);
    361361         }
    362362         else if ((strcmp(argv[n],"-DISK") == 0) && (n+1<argc) )
     
    366366         else if ((strcmp(argv[n],"-MEMCID") == 0) && (n+1<argc) )
    367367         {
    368             debug_memc_id = atoi(argv[n+1]);
     368            debug_memc_id = strtol(argv[n+1], NULL, 0);
    369369            size_t x = debug_memc_id >> 4;
    370370            size_t y = debug_memc_id & 0xF;
     
    377377         else if ((strcmp(argv[n],"-XRAMID") == 0) && (n+1<argc) )
    378378         {
    379             debug_xram_id = atoi(argv[n+1]);
     379            debug_xram_id = strtol(argv[n+1], NULL, 0);
    380380            size_t x = debug_xram_id >> 4;
    381381            size_t y = debug_xram_id & 0xF;
     
    388388         else if ((strcmp(argv[n],"-IOB") == 0) && (n+1<argc) )
    389389         {
    390             debug_iob = atoi(argv[n+1]);
     390            debug_iob = strtol(argv[n+1], NULL, 0);
    391391         }
    392392         else if ((strcmp(argv[n],"-PROCID") == 0) && (n+1<argc) )
    393393         {
    394             debug_proc_id     = atoi(argv[n+1]);
     394            debug_proc_id     = strtol(argv[n+1], NULL, 0);
    395395            size_t cluster_xy = debug_proc_id / NB_PROCS_MAX ;
    396396            size_t x          = cluster_xy >> 4;
     
    404404         else if ((strcmp(argv[n], "-THREADS") == 0) && ((n+1) < argc))
    405405         {
    406             threads_nr = atoi(argv[n+1]);
     406            threads_nr = strtol(argv[n+1], NULL, 0);
    407407            threads_nr = (threads_nr < 1) ? 1 : threads_nr;
    408408         }
    409409         else if ((strcmp(argv[n], "-FROZEN") == 0) && (n+1 < argc))
    410410         {
    411             frozen_cycles = atoi(argv[n+1]);
     411            frozen_cycles = strtol(argv[n+1], NULL, 0);
    412412         }
    413413         else if ((strcmp(argv[n], "-PERIOD") == 0) && (n+1 < argc))
    414414         {
    415             debug_period = atoi(argv[n+1]);
     415            debug_period = strtol(argv[n+1], NULL, 0);
    416416         }
    417417         else
     
    436436   }
    437437
     438   // Activate Distributed Boot (set by environment variable)
     439   // When this is activated, every processor boots with its instruction and data
     440   // physical address extension register initialized to its cluster index
     441   // (X_LOCAL, Y_LOCAL). To support this feature, a distributed ROM is
     442   // implemented in each cluster.
     443
     444   const bool distributed_boot = (getenv("DISTRIBUTED_BOOT") != NULL);
     445
    438446   // checking hardware parameters
    439447   assert( (XMAX <= 16) and
     
    466474             << " - RAM_LATENCY     = " << XRAM_LATENCY << std::endl
    467475             << " - MAX_FROZEN      = " << frozen_cycles << std::endl
     476             << " - DIST_BOOT       = " << distributed_boot << std::endl
    468477             << " - DEBUG_PROCID    = " << debug_proc_id << std::endl
    469478             << " - DEBUG_MEMCID    = " << debug_memc_id << std::endl
     
    544553                     IntTab(cluster(x,y), INT_MDMA_TGT_ID), not cacheable));
    545554
     555         std::ostringstream    sbrom;
     556         sbrom << "int_seg_brom_" << x << "_" << y;
     557         maptab_int.add(Segment(sbrom.str(), SEG_ROM_BASE+offset, SEG_ROM_SIZE,
     558                     IntTab(cluster(x,y), INT_BROM_TGT_ID), cacheable));
     559
    546560         // the following segments are only defined in cluster_iob0 or in cluster_iob1
    547561
     
    572586            maptab_int.add(Segment(snic.str(), SEG_NIC_BASE+offset, SEG_NIC_SIZE,
    573587                        IntTab(cluster(x,y), INT_IOBX_TGT_ID), not cacheable));
    574 
    575             std::ostringstream    srom;
    576             srom << "int_seg_brom_" << x << "_" << y;
    577             maptab_int.add(Segment(srom.str(), SEG_ROM_BASE+offset, SEG_ROM_SIZE,
    578                         IntTab(cluster(x,y), INT_IOBX_TGT_ID), cacheable ));
    579588
    580589            std::ostringstream    sdma;
     
    698707    maptab_iox.add(Segment("iox_seg_cdma_0", SEG_CMA_BASE + iob0_base, SEG_CMA_SIZE,
    699708                   IntTab(0, IOX_CDMA_TGT_ID), false));
    700     maptab_iox.add(Segment("iox_seg_brom_0", SEG_ROM_BASE + iob0_base, SEG_ROM_SIZE,
    701                    IntTab(0, IOX_BROM_TGT_ID), false));
    702709    maptab_iox.add(Segment("iox_seg_iopi_0", SEG_PIC_BASE + iob0_base, SEG_PIC_SIZE,
    703710                   IntTab(0, IOX_IOPI_TGT_ID), false));
     
    718725        maptab_iox.add(Segment("iox_seg_cdma_1", SEG_CMA_BASE + iob1_base, SEG_CMA_SIZE,
    719726                   IntTab(0, IOX_CDMA_TGT_ID), false));
    720         maptab_iox.add(Segment("iox_seg_brom_1", SEG_ROM_BASE + iob1_base, SEG_ROM_SIZE,
    721                    IntTab(0, IOX_BROM_TGT_ID), false));
    722727        maptab_iox.add(Segment("iox_seg_iopi_1", SEG_PIC_BASE + iob1_base, SEG_PIC_SIZE,
    723728                   IntTab(0, IOX_IOPI_TGT_ID), false));
     
    813818    VciSignals<vci_param_ext>         signal_vci_tgt_fbuf("signal_vci_tgt_fbuf");
    814819    VciSignals<vci_param_ext>         signal_vci_tgt_mnic("signal_vci_tgt_mnic");
    815     VciSignals<vci_param_ext>         signal_vci_tgt_brom("signal_vci_tgt_brom");
    816820    VciSignals<vci_param_ext>         signal_vci_tgt_bdev("signal_vci_tgt_bdev");
    817821    VciSignals<vci_param_ext>         signal_vci_tgt_cdma("signal_vci_tgt_cdma");
     
    901905
    902906   const size_t nb_iox_initiators = (cluster_iob0 != cluster_iob1) ? 5 : 4;
    903    const size_t nb_iox_targets = (cluster_iob0 != cluster_iob1) ? 9 : 8;
     907   const size_t nb_iox_targets = (cluster_iob0 != cluster_iob1) ? 8 : 7;
    904908
    905909   // IOX network
     
    909913                                                   nb_iox_targets,
    910914                                                   nb_iox_initiators );
    911    // boot ROM
    912    VciSimpleRom<vci_param_ext>*  brom;
    913    brom = new VciSimpleRom<vci_param_ext>( "brom",
    914                                            IntTab(0, IOX_BROM_TGT_ID),
    915                                            maptab_iox,
    916                                            loader );
     915
    917916   // Network Controller
    918917   VciMultiNic<vci_param_ext>*  mnic;
     
    976975                                       IntTab(0, IOX_IOPI_TGT_ID),
    977976                                       32 );        // number of input HWI
     977
    978978   // Clusters
    979979   TsarIobCluster<vci_param_int,
     
    10411041                INT_XICU_TGT_ID,
    10421042                INT_MDMA_TGT_ID,
     1043                INT_BROM_TGT_ID,
    10431044                INT_IOBX_TGT_ID,
    10441045
     
    10651066                XCU_NB_INPUTS,
    10661067
     1068                distributed_boot,
     1069
    10671070                loader,
    10681071
     
    11001103    iox_network->p_to_tgt[IOX_FBUF_TGT_ID]               (signal_vci_tgt_fbuf);
    11011104    iox_network->p_to_tgt[IOX_MNIC_TGT_ID]               (signal_vci_tgt_mnic);
    1102     iox_network->p_to_tgt[IOX_BROM_TGT_ID]               (signal_vci_tgt_brom);
    11031105    iox_network->p_to_tgt[IOX_BDEV_TGT_ID]               (signal_vci_tgt_bdev);
    11041106    iox_network->p_to_tgt[IOX_CDMA_TGT_ID]               (signal_vci_tgt_cdma);
     
    11381140
    11391141    std::cout << "  - MNIC connected" << std::endl;
    1140 
    1141     // BROM connexion
    1142     brom->p_clk                                          (signal_clk);
    1143     brom->p_resetn                                       (signal_resetn);
    1144     brom->p_vci                                          (signal_vci_tgt_brom);
    1145 
    1146     std::cout << "  - BROM connected" << std::endl;
    11471142
    11481143    // MTTY connexion
     
    14231418
    14241419        // Monitor a specific address for one L2 cache
    1425         // clusters[0][0]->memc->cache_monitor( 0x1542c0ULL, true );   // single word
     1420        // clusters[0][0]->memc->cache_monitor( 0x170000ULL);
    14261421
    14271422        // Monitor a specific address for one XRAM
     
    14401435                size_t x          = cluster_xy >> 4;
    14411436                size_t y          = cluster_xy & 0xF;
    1442  
    1443                 clusters[x][y]->proc[l]->print_trace(0x40);
     1437
     1438                clusters[x][y]->proc[l]->print_trace(1);
    14441439                std::ostringstream proc_signame;
    14451440                proc_signame << "[SIG]PROC_" << x << "_" << y << "_" << l ;
     
    14511446                clusters[x][y]->signal_int_vci_tgt_xicu.print_trace(xicu_signame.str());
    14521447
    1453                 clusters[x][y]->mdma->print_trace();
    1454                 std::ostringstream mdma_signame;
    1455                 mdma_signame << "[SIG]MDMA_" << x << "_" << y;
    1456                 clusters[x][y]->signal_int_vci_tgt_mdma.print_trace(mdma_signame.str());
    1457 
    1458                 // local interrupts in cluster(x,y)
    1459                 if( clusters[x][y]->signal_irq_memc.read() )
    1460                 std::cout << "### IRQ_MMC_" << std::dec << x << "_" << y
    1461                           << " ACTIVE" << std::endl;
    1462 
    1463                 for ( size_t c = 0 ; c < NB_DMA_CHANNELS ; c++ )
    1464                 {
    1465                     if( clusters[x][y]->signal_irq_mdma[c].read() )
    1466                     std::cout << "### IRQ_DMA_" << std::dec << x << "_" << y << "_" << c
    1467                               << " ACTIVE" << std::endl;
    1468                 }
    1469  
    1470                 for ( size_t c = 0 ; c < NB_PROCS_MAX ; c++ )
    1471                 {
    1472                     if( clusters[x][y]->signal_proc_it[c].read() )
    1473                     std::cout << "### IRQ_PROC_" << std::dec << x << "_" << y << "_" << c
    1474                               << " ACTIVE" << std::endl;
    1475                 }
     1448//              clusters[x][y]->mdma->print_trace();
     1449//              std::ostringstream mdma_signame;
     1450//              mdma_signame << "[SIG]MDMA_" << x << "_" << y;
     1451//              clusters[x][y]->signal_int_vci_tgt_mdma.print_trace(mdma_signame.str());
     1452
     1453                if( clusters[x][y]->signal_proc_it[l].read() )
     1454                    std::cout << "### IRQ_PROC_" << std::dec
     1455                              << x << "_" << y << "_" << l << " ACTIVE" << std::endl;
    14761456            }
    14771457
     
    15211501//              clusters[0][0]->signal_ram_vci_ini_iobx.print_trace( "[SIG]IOB0_RAM_INI");
    15221502
    1523 //              signal_vci_ini_iob0.print_trace("[SIG]IOB0_IOX_INI");
    1524 //              signal_vci_tgt_iob0.print_trace("[SIG]IOB0_IOX_TGT");
     1503                signal_vci_ini_iob0.print_trace("[SIG]IOB0_IOX_INI");
     1504                signal_vci_tgt_iob0.print_trace("[SIG]IOB0_IOX_TGT");
    15251505
    15261506//              cdma->print_trace();
     
    15281508//              signal_vci_ini_cdma.print_trace("[SIG]IOX_CDMA_INI");
    15291509
    1530 //              brom->print_trace();
    1531 //              signal_vci_tgt_brom.print_trace("[SIG]IOX_BROM_TGT");
    1532 
    15331510//              mtty->print_trace();
    15341511//              signal_vci_tgt_mtty.print_trace("[SIG]IOX_MTTY_TGT");
     
    15381515                signal_vci_ini_bdev.print_trace("[SIG]BDEV_INI");
    15391516
    1540 //              mnic->print_trace();
    1541 //              signal_vci_tgt_mnic.print_trace("[SIG]MNIC_TGT");
     1517                mnic->print_trace();
     1518                signal_vci_tgt_mnic.print_trace("[SIG]MNIC_TGT");
    15421519
    15431520//              fbuf->print_trace();
  • branches/reconfiguration/platforms/tsar_generic_iob/top.desc

    r747 r748  
    2828        uses = [
    2929            # cluster
    30             Uses('caba:tsar_iob_cluster',
     30            Uses('caba:reconfiguration:tsar_iob_cluster',
    3131                  vci_data_width_int  = vci_cell_size_int,
    3232                  vci_data_width_ext  = vci_cell_size_ext,
  • branches/reconfiguration/platforms/tsar_generic_iob/tsar_iob_cluster/caba/metadata/tsar_iob_cluster.sd

    r747 r748  
    22# -*- python -*-
    33
    4 Module('caba:tsar_iob_cluster',
     4Module('caba:reconfiguration:tsar_iob_cluster',
    55    classname = 'soclib::caba::TsarIobCluster',
    66
     
    4848
    4949        Uses('caba:vci_multi_dma',
     50              cell_size          = parameter.Reference('vci_data_width_int')),
     51
     52        Uses('caba:vci_simple_rom',
    5053              cell_size          = parameter.Reference('vci_data_width_int')),
    5154
  • branches/reconfiguration/platforms/tsar_generic_iob/tsar_iob_cluster/caba/source/include/tsar_iob_cluster.h

    r747 r748  
    3232#include "vci_cc_vcache_wrapper.h"
    3333#include "vci_io_bridge.h"
     34#include "vci_simple_rom.h"
    3435
    3536namespace soclib { namespace caba   {
     
    9495    VciSignals<vci_param_int>             signal_int_vci_tgt_xicu;
    9596    VciSignals<vci_param_int>             signal_int_vci_tgt_mdma;
     97    VciSignals<vci_param_int>             signal_int_vci_tgt_brom;
    9698    VciSignals<vci_param_int>             signal_int_vci_tgt_iobx;
    9799
     
    146148    VciMultiDma<vci_param_int>*                       mdma;
    147149
     150    VciSimpleRom<vci_param_int>*                      brom;
     151
    148152    VciLocalCrossbar<vci_param_int>*                  int_xbar_d;
    149153   
     
    205209                    size_t                             int_xicu_tgt_id,
    206210                    size_t                             int_mdma_tgt_id,
     211                    size_t                             int_brom_tgt_id,
    207212                    size_t                             int_iobx_tgt_id,
    208213                    size_t                             int_proc_ini_id,
     
    227232                    size_t                             xcu_nb_inputs,
    228233
     234                    bool                               distboot,
     235
    229236                    const Loader                       &loader,       // loader for XRAM
    230237
  • branches/reconfiguration/platforms/tsar_generic_iob/tsar_iob_cluster/caba/source/src/tsar_iob_cluster.cpp

    r747 r748  
    5050                    size_t                             int_xicu_tgt_id, // local index
    5151                    size_t                             int_mdma_tgt_id, // local index
     52                    size_t                             int_brom_tgt_id, // local index
    5253                    size_t                             int_iobx_tgt_id, // local index
    5354
     
    7374                    size_t                             xcu_nb_inputs,
    7475
    75                     const Loader                      &loader,
     76                    bool                               distboot,
     77
     78                    const Loader                       &loader,
    7679
    7780                    uint32_t                           frozen_cycles,
     
    137140                      debug_start_cycle,
    138141                      proc_debug_ok);
     142
     143        // initialize physical address extension with cluster ID when using
     144        // distributed boot
     145        if (distboot)
     146        {
     147            proc[p]->set_dcache_paddr_ext_reset(cluster_id);
     148            proc[p]->set_icache_paddr_ext_reset(cluster_id);
     149        }
    139150    }
    140151
     
    193204                     nb_dmas);                            // number of IRQs
    194205
     206    ///////////   DISTRIBUTED BOOT ROM
     207    std::ostringstream s_brom;
     208    s_brom << "brom_" << x_id << "_" << y_id;
     209    brom = new VciSimpleRom<vci_param_int>(
     210                     s_brom.str().c_str(),
     211                     IntTab(cluster_id, int_brom_tgt_id),
     212                     mt_int,
     213                     loader,
     214                     x_width + y_width);                  // msb drop bits
     215
    195216    ///////////  Direct LOCAL_XBAR(S)
    196217    size_t nb_direct_initiators = is_io ? nb_procs + 2 : nb_procs + 1;
    197     size_t nb_direct_targets    = is_io ? 4 : 3;
     218    size_t nb_direct_targets    = is_io ? 5 : 4;
    198219
    199220    std::ostringstream s_int_xbar_d;
     
    432453    int_xbar_d->p_to_target[int_xicu_tgt_id]          (signal_int_vci_tgt_xicu);
    433454    int_xbar_d->p_to_target[int_mdma_tgt_id]          (signal_int_vci_tgt_mdma);
     455    int_xbar_d->p_to_target[int_brom_tgt_id]          (signal_int_vci_tgt_brom);
    434456    int_xbar_d->p_to_initiator[int_mdma_ini_id]       (signal_int_vci_ini_mdma);
    435457    for (size_t p = 0; p < nb_procs; p++)
     
    550572        mdma->p_irq[i]                           (signal_irq_mdma[i]);
    551573
     574    /////////////////////////////////// BROM
     575    brom->p_clk                                  (this->p_clk);
     576    brom->p_resetn                               (this->p_resetn);
     577    brom->p_vci                                  (signal_int_vci_tgt_brom);
     578
    552579    //////////////////////////// RAM network CMD & RSP routers
    553580    ram_router_cmd->p_clk                        (this->p_clk);
     
    626653
    627654// Local Variables:
    628 // tab-width: 3
    629 // c-basic-offset: 3
     655// tab-width: 4
     656// c-basic-offset: 4
    630657// c-file-offsets:((innamespace . 0)(inline-open . 0))
    631658// indent-tabs-mode: nil
    632659// End:
    633660
    634 // vim: filetype=cpp:expandtab:shiftwidth=3:tabstop=3:softtabstop=3
    635 
     661// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=4:softtabstop=4
     662
Note: See TracChangeset for help on using the changeset viewer.