mirror of
				https://github.com/openhwgroup/cvw
				synced 2025-02-11 06:05:49 +00:00 
			
		
		
		
	Merge pull request #211 from ross144/main
Fixes the issue introduced by the fix for issue 203
This commit is contained in:
		
						commit
						52dcd63d1e
					
				| @ -288,7 +288,7 @@ module hptw ( | ||||
|       default:                                                        NextWalkerState = IDLE; // should never be reached
 | ||||
|     endcase // case (WalkerState)
 | ||||
| 
 | ||||
|   assign IgnoreRequestTLB = WalkerState == IDLE & TLBMiss; | ||||
|   assign IgnoreRequestTLB = (WalkerState == IDLE & TLBMiss) | (LSUAccessFaultM); // RT : 05 April 2023 if hptw request has pmp/a fault suppress bus access.
 | ||||
|   assign SelHPTW = WalkerState != IDLE; | ||||
|   assign HPTWAccessFaultDelay = HPTWLoadAccessFaultDelay | HPTWStoreAmoAccessFaultDelay | HPTWInstrAccessFaultDelay; | ||||
|   assign HPTWStall = (WalkerState != IDLE) | (WalkerState == IDLE & TLBMiss & ~(HPTWAccessFaultDelay)); | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user