From: Luke Kenneth Casson Leighton Date: Sun, 9 May 2021 19:04:35 +0000 (+0100) Subject: remove SECOND_REQ X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c5191dbed7e058048151a53ea070a84ae2e31787;p=soc.git remove SECOND_REQ --- diff --git a/src/soc/fu/ldst/loadstore.py b/src/soc/fu/ldst/loadstore.py index 2e2046bf..25843d5b 100644 --- a/src/soc/fu/ldst/loadstore.py +++ b/src/soc/fu/ldst/loadstore.py @@ -26,12 +26,11 @@ from soc.bus.sram import SRAM @unique class State(Enum): IDLE = 0 # ready for instruction - SECOND_REQ = 1 # send 2nd request of unaligned xfer - ACK_WAIT = 2 # waiting for ack from dcache - MMU_LOOKUP = 3 # waiting for MMU to look up translation - TLBIE_WAIT = 4 # waiting for MMU to finish doing a tlbie - FINISH_LFS = 5 # write back converted SP data for lfs* - COMPLETE = 6 # extra cycle to complete an operation + ACK_WAIT = 1 # waiting for ack from dcache + MMU_LOOKUP = 2 # waiting for MMU to look up translation + TLBIE_WAIT = 3 # waiting for MMU to finish doing a tlbie + FINISH_LFS = 4 # write back converted SP data for lfs* + COMPLETE = 5 # extra cycle to complete an operation # glue logic for microwatt mmu and dcache