Compare commits
5 commits
main
...
repair_tag
Author | SHA1 | Date | |
---|---|---|---|
|
0452f44fbd | ||
|
e89254ebef | ||
![]() |
ed8e0b8337 | ||
![]() |
5588fafebd | ||
![]() |
6e3b3e9178 |
2
Makefile
2
Makefile
|
@ -61,7 +61,7 @@ $(BDPI_OBJ): $(BDPI_SRC)
|
|||
|
||||
BSC_LINK_FLAGS += -keep-fires
|
||||
|
||||
BSC_PATHS = -p bs/:bsv/:+
|
||||
BSC_PATHS = -p bs/:bs/Tests/:bsv/:+
|
||||
|
||||
.PHONY: help
|
||||
help:
|
||||
|
|
|
@ -57,9 +57,9 @@ interface BusMaster =
|
|||
-- This has implications about for the implementor of BusMaster, namely, that it
|
||||
-- should hold its request until it's request method gets called.
|
||||
request :: BusRequest
|
||||
-- From the masters's perspective, the response should not be called until
|
||||
-- the client is ready to accept the response. In other words, response
|
||||
-- should be guarded by the client.
|
||||
-- From the masters's perspective, the response should not be called by the
|
||||
-- arbiter until the master is ready to accept the response. In other words,
|
||||
-- response should be guarded by the client.
|
||||
response :: BusResponse -> Action
|
||||
|
||||
type Token = UInt 5
|
||||
|
|
|
@ -9,7 +9,7 @@ import Util
|
|||
#define UIntLog2N(n) (UInt (TLog n))
|
||||
|
||||
interface (TagEngine :: # -> *) numTags =
|
||||
requestTag :: ActionValue UIntLog2N(numTags)
|
||||
requestTag :: ActionValue (Maybe UIntLog2N(numTags))
|
||||
retireTag :: UIntLog2N(numTags) -> ActionValue BasicResult
|
||||
|
||||
-- The tag engine returns a tag that is unique for the duration of
|
||||
|
@ -19,6 +19,7 @@ interface (TagEngine :: # -> *) numTags =
|
|||
mkTagEngine :: Module (TagEngine numTags)
|
||||
mkTagEngine =
|
||||
do
|
||||
|
||||
let reifiedNumTags = fromInteger |> valueOf numTags
|
||||
|
||||
freeStackVec :: Vector numTags (Reg UIntLog2N(numTags))
|
||||
|
@ -30,6 +31,16 @@ mkTagEngine =
|
|||
stackPtr :: (Reg (Maybe(UIntLog2N(numTags))))
|
||||
stackPtr <- mkReg |> Just |> reifiedNumTags - 1
|
||||
|
||||
methodRequestTagCalled :: PulseWire
|
||||
methodRequestTagCalled <- mkPulseWire
|
||||
|
||||
methodRetireTagCalledValid :: RWire UIntLog2N(numTags)
|
||||
methodRetireTagCalledValid <- mkUnsafeRWire
|
||||
-- methodRetireTagCalledValid <- mkRWireSBR
|
||||
|
||||
computedTagResult :: Wire (Maybe UIntLog2N(numTags))
|
||||
computedTagResult <- mkBypassWire
|
||||
|
||||
debugOnce <- mkReg True
|
||||
|
||||
addRules $
|
||||
|
@ -41,41 +52,76 @@ mkTagEngine =
|
|||
$display "stackPtr : " (fshow stackPtr)
|
||||
debugOnce := False
|
||||
|
||||
counter <- mkReg(0 :: UIntLog2N(numTags))
|
||||
"update stack pointer": when True ==>
|
||||
do
|
||||
stackPtr :=
|
||||
case (methodRequestTagCalled, methodRetireTagCalledValid.wget) of
|
||||
(True, Just _) -> stackPtr
|
||||
(True, Nothing) ->
|
||||
case stackPtr of
|
||||
Just 0 -> Nothing
|
||||
Just sampledStackPtr -> Just |> sampledStackPtr - 1
|
||||
Nothing -> Nothing
|
||||
(False, Just _) ->
|
||||
case stackPtr of
|
||||
Just sampledStackPtr -> Just |> sampledStackPtr + 1
|
||||
Nothing -> Nothing
|
||||
(False, Nothing) -> stackPtr
|
||||
|
||||
"update free stack": when True ==>
|
||||
do
|
||||
case (methodRequestTagCalled, methodRetireTagCalledValid.wget) of
|
||||
(True, Just _) -> do action {}
|
||||
(True, Nothing) -> do action {}
|
||||
(False, Just tag) -> do
|
||||
case stackPtr of
|
||||
Just sampledStackPtr -> do
|
||||
(select freeStackVec (sampledStackPtr + 1)) := tag
|
||||
Nothing -> do
|
||||
(select freeStackVec 0) := tag
|
||||
(False, Nothing) -> do action {}
|
||||
|
||||
"update in use": when True ==>
|
||||
do
|
||||
case (methodRequestTagCalled, methodRetireTagCalledValid.wget) of
|
||||
(True, Just _) -> do action {}
|
||||
(True, Nothing) ->
|
||||
case stackPtr of
|
||||
Just sampledStackPtr -> do
|
||||
(select inUseVec sampledStackPtr) := True
|
||||
Nothing -> do action {}
|
||||
(False, Just tag) -> do
|
||||
(select inUseVec tag) := False
|
||||
(False, Nothing) -> do action {}
|
||||
|
||||
"compute tag": when True ==>
|
||||
computedTagResult :=
|
||||
case methodRetireTagCalledValid.wget of
|
||||
Just tag -> Just tag
|
||||
Nothing ->
|
||||
case stackPtr of
|
||||
Just sampledStackPtr ->
|
||||
Just |> readReg (select freeStackVec sampledStackPtr)
|
||||
Nothing -> Nothing
|
||||
|
||||
return $
|
||||
interface TagEngine
|
||||
|
||||
requestTag :: ActionValue UIntLog2N(numTags)
|
||||
requestTag :: ActionValue (Maybe UIntLog2N(numTags))
|
||||
requestTag =
|
||||
do
|
||||
stackPtr :=
|
||||
if sampledStackPtr == 0
|
||||
then Nothing
|
||||
else Just |> sampledStackPtr - 1
|
||||
(select inUseVec sampledStackPtr) := True
|
||||
return |> readReg (select freeStackVec sampledStackPtr)
|
||||
when
|
||||
Just sampledStackPtr <- stackPtr
|
||||
methodRequestTagCalled.send
|
||||
return computedTagResult
|
||||
|
||||
-- retireTag isn't guarded so its up to external module to only attempt to
|
||||
-- retire valid tags... At any rate, we can notify the requestor of failures
|
||||
-- to retire tags - although the requestor can merely ignore this
|
||||
-- notification.
|
||||
retireTag :: UIntLog2N(numTags) -> ActionValue BasicResult
|
||||
retireTag tag =
|
||||
do
|
||||
let
|
||||
tagValid = tag < reifiedNumTags
|
||||
tagInUse = readReg (select inUseVec tag)
|
||||
nextStackPtrUint =
|
||||
case stackPtr of
|
||||
Nothing -> 0
|
||||
Just n -> n + 1
|
||||
if (tagValid && tagInUse)
|
||||
then do
|
||||
(select inUseVec tag) := False
|
||||
(select freeStackVec nextStackPtrUint) := tag
|
||||
stackPtr := Just nextStackPtrUint
|
||||
methodRetireTagCalledValid.wset tag
|
||||
return Success
|
||||
else do
|
||||
return Failure
|
||||
|
|
53
bs/Tests/TagEngineTester.bs
Normal file
53
bs/Tests/TagEngineTester.bs
Normal file
|
@ -0,0 +1,53 @@
|
|||
package TagEngineTester(mkTagEngineTester) where
|
||||
|
||||
import TagEngine
|
||||
import ActionSeq
|
||||
|
||||
mkTagEngineTester :: Module Empty
|
||||
mkTagEngineTester = do
|
||||
tagEngine :: TagEngine 5 <- mkTagEngine
|
||||
count :: Reg (UInt 4) <- mkReg 0;
|
||||
runOnce :: Reg Bool <- mkReg False
|
||||
|
||||
s :: ActionSeq
|
||||
s <-
|
||||
let
|
||||
requestTagAction :: Action
|
||||
requestTagAction =
|
||||
do
|
||||
tag <- tagEngine.requestTag
|
||||
$display "got tag : " (fshow tag)
|
||||
|
||||
retireTagAction :: UInt 3 -> Action
|
||||
retireTagAction tag =
|
||||
do
|
||||
res <- tagEngine.retireTag tag
|
||||
$display "retiring tag : " (fshow tag) " " (fshow res)
|
||||
action {}
|
||||
|
||||
in
|
||||
actionSeq $
|
||||
do requestTagAction
|
||||
|> do requestTagAction
|
||||
|> do requestTagAction
|
||||
|> do retireTagAction 3
|
||||
|> do $display "BEGIN TRY SIMULTANEOUS RETIRE and REQUEST"
|
||||
|> do
|
||||
retireTagAction 4
|
||||
requestTagAction
|
||||
|> do $display "END TRY SIMULTANEOUS RETIRE and REQUEST"
|
||||
|> do requestTagAction
|
||||
|> do retireTagAction 4
|
||||
|> do retireTagAction 4
|
||||
|> do retireTagAction 0
|
||||
|> do requestTagAction
|
||||
|> do requestTagAction
|
||||
|> do retireTagAction 1
|
||||
|> do requestTagAction
|
||||
|
||||
addRules $
|
||||
rules
|
||||
"testIncrement": when (runOnce == False) ==>
|
||||
do
|
||||
s.start
|
||||
runOnce := True
|
52
bs/Top.bs
52
bs/Top.bs
|
@ -10,6 +10,8 @@ import TagEngine
|
|||
import List
|
||||
import ActionSeq
|
||||
|
||||
import TagEngineTester
|
||||
|
||||
type FCLK = 25000000
|
||||
type BAUD = 9600
|
||||
|
||||
|
@ -66,8 +68,6 @@ mkTop = do
|
|||
|
||||
bus :: Bus <- mkBus
|
||||
busClient :: BusClient <- mkBusClient
|
||||
let a :: List Integer = 1 :> 2 :> Nil
|
||||
b = length a
|
||||
|
||||
persistLed :: Reg (Bit 8) <- mkReg 0
|
||||
messageM $ "Hallo!!" + (realToString 5)
|
||||
|
@ -100,58 +100,12 @@ mkTop = do
|
|||
|
||||
mkSim :: Module Empty
|
||||
mkSim = do
|
||||
let cfg :: BRAM_Configure = defaultValue
|
||||
|
||||
tagEngine :: TagEngine 5 <- mkTagEngine
|
||||
count :: Reg (UInt 4) <- mkReg 0;
|
||||
_ :: Empty <- mkTagEngineTester
|
||||
initCFunctions :: Reg Bool <- mkReg False;
|
||||
core :: Core FCLK <- mkCore;
|
||||
|
||||
s :: ActionSeq
|
||||
s <- actionSeq
|
||||
$ do
|
||||
$display "got tag : " tagEngine.requestTag
|
||||
|> do
|
||||
$display "got tag : " tagEngine.requestTag
|
||||
|> do
|
||||
$display "got tag : " tagEngine.requestTag
|
||||
|> do
|
||||
res <- tagEngine.retireTag 3
|
||||
$display "retiring tag : 3 " (fshow res)
|
||||
action {}
|
||||
|> do
|
||||
$display "got tag : " tagEngine.requestTag
|
||||
|> do
|
||||
$display "got tag : " tagEngine.requestTag
|
||||
|> do
|
||||
res <- tagEngine.retireTag 4
|
||||
$display "retiring tag : 4 " (fshow res)
|
||||
action {}
|
||||
|> do
|
||||
res <- tagEngine.retireTag 4
|
||||
$display "retiring tag : 4 " (fshow res)
|
||||
action {}
|
||||
|> do
|
||||
res <- tagEngine.retireTag 0
|
||||
$display "retiring tag : 0 " (fshow res)
|
||||
action {}
|
||||
|> do
|
||||
$display "got tag : " tagEngine.requestTag
|
||||
|> do
|
||||
$display "got tag : " tagEngine.requestTag
|
||||
|> do
|
||||
res <- tagEngine.retireTag 1
|
||||
$display "retiring tag : 1 " (fshow res)
|
||||
action {}
|
||||
|> do
|
||||
$display "got tag : " tagEngine.requestTag
|
||||
|
||||
addRules $
|
||||
rules
|
||||
"testIncrement": when (count < 10) ==>
|
||||
do
|
||||
count := count + 1
|
||||
s.start
|
||||
"initCFunctionsOnce": when not initCFunctions ==>
|
||||
do
|
||||
initTerminal
|
||||
|
|
Loading…
Reference in a new issue