Changeset 367 for branches/v5
- Timestamp:
- Apr 15, 2013, 11:55:27 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/v5/modules/vci_mem_cache/caba/source/src/vci_mem_cache.cpp
r362 r367 7433 7433 case CC_SEND_CLEANUP_ACK: 7434 7434 { 7435 uint64_t flit = 0;7436 7437 7435 uint8_t cleanup_ack_type; 7438 7436 if(r_cleanup_to_cc_send_inst.read()) … … 7444 7442 cleanup_ack_type = DspinDhccpParam::TYPE_CLEANUP_ACK_DATA; 7445 7443 } 7444 7445 uint64_t flit = 0; 7446 uint64_t dest = 7447 r_cleanup_to_cc_send_srcid.read() << 7448 (DspinDhccpParam::SRCID_WIDTH - vci_param::S); 7446 7449 7447 7450 DspinDhccpParam::dspin_set( … … 7452 7455 DspinDhccpParam::dspin_set( 7453 7456 flit, 7454 r_cleanup_to_cc_send_srcid.read(),7457 dest, 7455 7458 DspinDhccpParam::CLEANUP_ACK_DEST); 7456 7459 … … 7491 7494 7492 7495 uint64_t flit = 0; 7496 uint64_t dest = 7497 m_xram_rsp_to_cc_send_srcid_fifo.read() << 7498 (DspinDhccpParam::SRCID_WIDTH - vci_param::S); 7493 7499 7494 7500 DspinDhccpParam::dspin_set( 7495 7501 flit, 7496 m_xram_rsp_to_cc_send_srcid_fifo.read(),7502 dest, 7497 7503 DspinDhccpParam::MULTI_INVAL_DEST); 7498 7504 … … 7641 7647 7642 7648 uint64_t flit = 0; 7649 uint64_t dest = 7650 m_write_to_cc_send_srcid_fifo.read() << 7651 (DspinDhccpParam::SRCID_WIDTH - vci_param::S); 7643 7652 7644 7653 DspinDhccpParam::dspin_set( 7645 7654 flit, 7646 m_write_to_cc_send_srcid_fifo.read(),7655 dest, 7647 7656 DspinDhccpParam::MULTI_UPDT_DEST); 7648 7657 … … 7745 7754 7746 7755 uint64_t flit = 0; 7756 uint64_t dest = 7757 m_cas_to_cc_send_srcid_fifo.read() << 7758 (DspinDhccpParam::SRCID_WIDTH - vci_param::S); 7747 7759 7748 7760 DspinDhccpParam::dspin_set( 7749 7761 flit, 7750 m_cas_to_cc_send_srcid_fifo.read(),7762 dest, 7751 7763 DspinDhccpParam::MULTI_UPDT_DEST); 7752 7764
Note: See TracChangeset
for help on using the changeset viewer.