Changeset 521 for trunk/modules/vci_cc_vcache_wrapper/caba/source/src
- Timestamp:
- Sep 9, 2013, 11:18:05 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/vci_cc_vcache_wrapper/caba/source/src/vci_cc_vcache_wrapper.cpp
r506 r521 3645 3645 // Caution : the itlb miss requests must be taken 3646 3646 // to avoid dead-lock in case of simultaneous ITLB miss 3647 { 3647 // Caution : the clack and cc requests must be taken 3648 // to avoid dead-lock 3649 { 3650 // coherence clack request (from DSPIN CLACK) 3651 if ( r_dcache_clack_req.read() ) 3652 { 3653 r_dcache_fsm = DCACHE_CC_CHECK; 3654 r_dcache_fsm_cc_save = r_dcache_fsm.read(); 3655 break; 3656 } 3657 3658 // coherence request (from CC_RECEIVE FSM) 3659 if ( r_cc_receive_dcache_req.read() and not r_dcache_cc_send_req.read()) 3660 { 3661 r_dcache_fsm = DCACHE_CC_CHECK; 3662 r_dcache_fsm_cc_save = r_dcache_fsm.read(); 3663 break; 3664 } 3665 3648 3666 // itlb miss request 3649 3667 if ( r_icache_tlb_miss_req.read() )
Note: See TracChangeset
for help on using the changeset viewer.