Ignore:
Timestamp:
Mar 20, 2013, 10:55:39 AM (11 years ago)
Author:
joannou
Message:
  • Commented debug in dspin_local_ring_fast_c
  • Added test on plen value in case of LL command in mem cache (vci_mem_cache and vci_mem_cache_dspin_coherence)
  • Removed coherence handling in *CACHE_MISS_DATA_UPDT states, in vci_cc_vcache_wrapper_dspin_coherence component
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/v5/modules/vci_mem_cache/caba/source/src/vci_mem_cache.cpp

    r313 r330  
    916916        exit(0);
    917917      }
     918      if((p_vci_tgt.cmd.read() == vci_param::CMD_LOCKED_READ) && (p_vci_tgt.plen.read() != 8))
     919      {
     920        std::cout
     921            << "VCI_MEM_CACHE ERROR " << name() << " TGT_CMD_READ state"
     922            << std::endl;
     923        std::cout
     924            << " ll command packets must have a plen of 8"
     925            << std::endl;
     926        exit(0);
     927      }
    918928
    919929      if ( p_vci_tgt.cmdval && m_cmd_read_addr_fifo.wok() )
Note: See TracChangeset for help on using the changeset viewer.