-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Port util/HellaQueue.scala to Chisel3 #3108
Merged
sequencer
merged 2 commits into
chipsalliance:chisel3_port
from
CircuitCoder:chisel3_hellaqueue
Oct 8, 2022
Merged
Port util/HellaQueue.scala to Chisel3 #3108
sequencer
merged 2 commits into
chipsalliance:chisel3_port
from
CircuitCoder:chisel3_hellaqueue
Oct 8, 2022
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CircuitCoder
force-pushed
the
chisel3_hellaqueue
branch
from
October 7, 2022 02:40
2d990df
to
3799cff
Compare
/easycla |
sequencer
force-pushed
the
chisel3_port
branch
from
October 7, 2022 04:00
c008d85
to
78468c8
Compare
CircuitCoder
force-pushed
the
chisel3_hellaqueue
branch
from
October 7, 2022 04:35
0f5fa53
to
ae8aaa0
Compare
sequencer
approved these changes
Oct 7, 2022
sequencer
approved these changes
Oct 8, 2022
SingularityKChen
pushed a commit
to SingularityKChen/rocket-chip
that referenced
this pull request
Oct 11, 2022
yqszxx
reviewed
Oct 15, 2022
@@ -2,35 +2,36 @@ | |||
|
|||
package freechips.rocketchip.util | |||
|
|||
import Chisel._ | |||
import chisel3._ | |||
import chisel3.util._ | |||
|
|||
class HellaFlowQueue[T <: Data](val entries: Int)(data: => T) extends Module { | |||
val io = new QueueIO(data, entries) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need an IO()
wrapper here.
The io.count
is not connected.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch!
Pending fix submitted in #3157
tianrui-wei
pushed a commit
to tianrui-wei/rocket-chip
that referenced
this pull request
Jan 5, 2023
Signed-off-by: Tianrui Wei <tianrui@tianruiwei.com>
sequencer
added a commit
that referenced
this pull request
Jan 5, 2023
* refactor ROMGenerator to chisel3. (#3091) Signed-off-by: Tianrui Wei <tianrui@tianruiwei.com> * Refactor util/Arbiters to chisel3 (#3092) Signed-off-by: Tianrui Wei <tianrui@tianruiwei.com> * refactor ResetCatchAndSync to chisel3. (#3093) Signed-off-by: Tianrui Wei <tianrui@tianruiwei.com> * refactor ReorderQueue to chisel3. (#3094) Signed-off-by: Tianrui Wei <tianrui@tianruiwei.com> * refactor MuxLiteral to chisel3. (#3098) Signed-off-by: Tianrui Wei <tianrui@tianruiwei.com> * Refactor util/Counters to chisel3 (#3101) Signed-off-by: Tianrui Wei <tianrui@tianruiwei.com> * Port CLINT.scala to Chisel 3 (#3107) Signed-off-by: Tianrui Wei <tianrui@tianruiwei.com> * Port util/HellaQueue.scala to Chisel3 (#3108) Signed-off-by: Tianrui Wei <tianrui@tianruiwei.com> * Port rocket/IDecode to chisel3 (#3119) Signed-off-by: Tianrui Wei <tianrui@tianruiwei.com> * Port rocket/Frontend to chisel3 (#3118) Signed-off-by: Tianrui Wei <tianrui@tianruiwei.com> * Port util/ECC.scala to Chisel 3 (#3132) Co-authored-by: Jiuyang Liu <liu@jiuyang.me> Signed-off-by: Tianrui Wei <tianrui@tianruiwei.com> * Refactor util/CRC to chisel3 (#3129) Signed-off-by: Tianrui Wei <tianrui@tianruiwei.com> * Port tile/fpu to chisel3 (#3127) Signed-off-by: Tianrui Wei <tianrui@tianruiwei.com> * Refactor util/Broadcaster to chisel3 (#3102) Signed-off-by: Tianrui Wei <tianrui@tianruiwei.com> * Fix HellaQueue IO type and imcomplete connections (#3157) Signed-off-by: Tianrui Wei <tianrui@tianruiwei.com> * Port rocket/RocketCore to chisel3 (#3121) * Port rocket/RocketCore to chisel3 * WireInit -> WireDefault * Try to fix unconnected id_scie_decoder * Drop all implicit conversions in RocketCore * Update src/main/scala/rocket/RocketCore.scala Co-authored-by: Jiuyang Liu <liu@jiuyang.me> Signed-off-by: Tianrui Wei <tianrui@tianruiwei.com> * Port rocket/NBDCache to chisel3 (#3117) Signed-off-by: Tianrui Wei <tianrui@tianruiwei.com> * Port rocket/ScratchpadSlavePort to chisel3 (#3115) * Port rocket/ScratchpadSlavePort to chisel3 * Fix missing cloneType in ScratchpadSlavePort * Fix MuxLookup hardware types in ScratchpadSlavePort * Fix partial connection in ScratchpadSlavePort Signed-off-by: Tianrui Wei <tianrui@tianruiwei.com> * Port rocket/TLB to Chisel3 (#3114) * Port rocket/TLB to chisel3 * Remove implicit conversions in TLB Signed-off-by: Tianrui Wei <tianrui@tianruiwei.com> Signed-off-by: Tianrui Wei <tianrui@tianruiwei.com> Co-authored-by: SingularityKChen <chency_singularity@163.com> Co-authored-by: rvsv39 <90169450+rvsv39@users.noreply.github.com> Co-authored-by: sinofp <sinofp@tuta.io> Co-authored-by: Liu Xiaoyi <circuitcoder0@gmail.com> Co-authored-by: Sharzy <me@sharzy.in> Co-authored-by: Jiuyang Liu <liu@jiuyang.me>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Type of change: other enhancement
Impact: no functional change
Development Phase: implementation