Skip to content

Commit

Permalink
[tlul] Choose valid default depths
Browse files Browse the repository at this point in the history
Use ReqDepth and RspDepth that the submodule 'prim_fifo_async'
supports. Although the submodule includes an assertion to
check for validity, the assertion is eliminated on some targets.
Also correct a module name in documentation.

Signed-off-by: Adrian Lees <[email protected]>
  • Loading branch information
alees24 committed Feb 14, 2024
1 parent 4bbd1bc commit e4f09e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hw/ip/tlul/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ The TL-UL socket `M:1` is a bus element that connects `M` TL-UL
hosts to 1 TL-UL device. Along with a `tlul_socket_1n`, this could
be used to build the TL-UL fabric, and uses `tlul_fifo` as its
building block. `tlul_socket_m1` has several parameterization settings
available. The `tlul_socket_m1` is synchronous, so a `tlul_async_fifo`
available. The `tlul_socket_m1` is synchronous, so a `tlul_fifo_async`
must be instantiated on any ports that run asynchronously.

| name | description |
Expand Down
4 changes: 2 additions & 2 deletions hw/ip/tlul/rtl/tlul_fifo_async.sv
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
`include "prim_assert.sv"

module tlul_fifo_async #(
parameter int unsigned ReqDepth = 3,
parameter int unsigned RspDepth = 3
parameter int unsigned ReqDepth = 4,
parameter int unsigned RspDepth = 4
) (
input clk_h_i,
input rst_h_ni,
Expand Down

0 comments on commit e4f09e1

Please sign in to comment.