Changeset 1055 for trunk


Ignore:
Timestamp:
Dec 20, 2017, 4:55:09 PM (6 years ago)
Author:
alain
Message:

bloup

Location:
trunk/platforms/tsar_generic_iob
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/platforms/tsar_generic_iob/arch_info.py

    r1053 r1055  
    222222                                       size     = rom_size )
    223223
     224                # we describe the largest config : (nb_nics = 4) & (nb_ttys = 8)
    224225                archi.addIrq( dstdev = pic, port = 0 , srcdev = nic, channel = 0 , is_rx = True )
    225226                archi.addIrq( dstdev = pic, port = 1 , srcdev = nic, channel = 1 , is_rx = True )
  • trunk/platforms/tsar_generic_iob/top.cpp

    r1053 r1055  
    16581658        // clusters[0][0]->proc[0]->cache_monitor( 0x00032D74ULL );
    16591659
    1660         // Monitor a specific address for one L2 cache (single word if second argument true)
    1661         // clusters[0][0]->memc->cache_monitor( 0x00032D74ULL, false );
     1660        // Monitor a specific address for L2 cache (single word if second argument true)
     1661        // clusters[0][0]->memc->cache_monitor( 0xdc000ULL );
    16621662
    16631663        // Monitor a specific address for one XRAM
     
    16681668            std::cout << "****************** cycle " << std::dec << n ;
    16691669            std::cout << " ************************************************" << std::endl;
    1670 
    16711670            // trace proc[debug_proc_id]
    16721671            if ( debug_proc_id != 0xFFFFFFFF )
    16731672            {
     1673                // processor debug modes
     1674                // 0x01 : write buffer trace
     1675                // 0x02 : dump processor registers
     1676                // 0x04 : dcache trace
     1677                // 0x08 : icache trace
     1678                // 0x10 : dtlb trace
     1679                // 0x20 : itlb trace
     1680                // 0x40 : SR
    16741681                size_t l          = debug_proc_id & ((1<<P_WIDTH)-1) ;
    16751682                size_t cluster_xy = debug_proc_id >> P_WIDTH ;
     
    16841691            {
    16851692*/
    1686                 clusters[x][y]->proc[l]->print_trace(0x1);
     1693                clusters[x][y]->proc[l]->print_trace(0x42);
    16871694                std::ostringstream proc_signame;
    16881695                proc_signame << "[SIG]PROC_" << x << "_" << y << "_" << l ;
Note: See TracChangeset for help on using the changeset viewer.