Changeset 903
- Timestamp:
- Dec 8, 2014, 6:16:47 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/reconfiguration/modules/vci_cc_vcache_wrapper/caba/source/src/vci_cc_vcache_wrapper.cpp
r888 r903 5435 5435 { 5436 5436 // debug: verify that the available response concerns the current transaction. 5437 assert(r_dcache_wdt_timeout.read() == p_vci.rtrdid.read()); 5437 if (r_dcache_wdt_timeout.read() != p_vci.rtrdid.read()) 5438 { 5439 std::cout << name() << ": Late response received after TIMEOUT " 5440 << std::dec << "(cycle " << m_cpt_total_cycles << ")" 5441 << std::endl; 5442 5443 exit(1); 5444 } 5438 5445 5439 5446 r_vci_rsp_fsm = RSP_DATA_UNC; … … 5442 5449 { 5443 5450 // debug: verify that the available response concerns the current transaction. 5444 assert(r_dcache_wdt_timeout.read() == p_vci.rtrdid.read()); 5451 if (r_dcache_wdt_timeout.read() != p_vci.rtrdid.read()) 5452 { 5453 std::cout << name() << ": Late response received after TIMEOUT " 5454 << std::dec << "(cycle " << m_cpt_total_cycles << ")" 5455 << std::endl; 5456 5457 exit(1); 5458 } 5445 5459 5446 5460 r_vci_rsp_fsm = RSP_DATA_MISS; … … 6151 6165 p_vci.cmdval = true; 6152 6166 p_vci.address = r_dcache_vci_paddr.read() & ~0x3; 6153 p_vci.wdata = r_dcache_vci_wdt_trdid.read();6167 p_vci.wdata = 0; 6154 6168 p_vci.be = r_dcache_vci_unc_be.read(); 6155 p_vci.trdid = 0;6169 p_vci.trdid = r_dcache_vci_wdt_trdid.read(); 6156 6170 p_vci.pktid = TYPE_DATA_UNC; 6157 6171 p_vci.plen = 4;
Note: See TracChangeset
for help on using the changeset viewer.