Tag Engine Notes #3

Open
opened 2025-03-17 16:04:23 +00:00 by Yehowshua · 4 comments
Owner
  • We need a bus slave...
  • For the bus slave, we the bus makes the request to the
  • the problem is we want to stick responses in the result FIFO as soon as they arrive, but they need to have a unique tag
    • I should have twice as many unique tags as the fifo size
    • need some sort of module where you can reserve a tag
    • all tags start off available. As soon as we reserve a tag, we move the pointer to the next available tag

===

Maybe instead we have linked lists of available tags

  • When we reserve a new tag t1, we move the that reserved tag off the list and change the head of the list to point to point to head = r.next
  • When we retire a reserved tag t2, we do *tail.next = t2
- We need a bus slave... - For the bus slave, we the bus makes the request to the - the problem is we want to stick responses in the result FIFO as soon as they arrive, but they need to have a unique tag - I should have twice as many unique tags as the fifo size - need some sort of module where you can reserve a tag - all tags start off available. As soon as we reserve a tag, we move the pointer to the next available tag === Maybe instead we have linked lists of available tags * When we reserve a new tag t1, we move the that reserved tag off the list and change the head of the list to point to point to `head = r.next` * When we retire a reserved tag t2, we do `*tail.next = t2`
Author
Owner

refactor function into getPtr and getHead

refactor function into getPtr and getHead
Author
Owner

After talking a bit to Grok, I realized that what I wanted to actually implement is called a FreeList. So scratch the above comments and we're going to implement a stack based FreeList. This means we will need to rename TagEngine.bs -> FreeList.bs

After talking a bit to Grok, I realized that what I wanted to actually implement is called a FreeList. So scratch the above comments and we're going to implement a stack based FreeList. This means we will need to rename `TagEngine.bs` -> `FreeList.bs`
Author
Owner

Ask on groups.io how to convert (\i -> mkReg |> fromInteger i) to it's own function...

Ask on groups.io how to convert ` (\i -> mkReg |> fromInteger i)` to it's own function...
Author
Owner

Try and add StackPtr type to improve legibility

Try and add StackPtr type to improve legibility
Sign in to join this conversation.
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: ReferenceProjects/riscv-bluespec-classic#3
No description provided.