Skip to content

Commit

Permalink
AHBToTL: support bursts >= 256 bytes large (chipsalliance#2235)
Browse files Browse the repository at this point in the history
This is only possible on a 128-bit-wide AHB interface.
  • Loading branch information
terpstra authored Dec 27, 2019
1 parent a602808 commit fd7179b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/amba/ahb/ToTL.scala
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class AHBToTL()(implicit p: Parameters) extends LazyModule
val d_fail = RegInit(Bool(false))
val d_write = RegInit(Bool(false))
val d_addr = Reg(in.haddr)
val d_size = Reg(in.hsize)
val d_size = Reg(out.a.bits.size)

when (out.d.valid) { d_recv := Bool(false) }
when (out.a.ready) { d_send := Bool(false) }
Expand Down

0 comments on commit fd7179b

Please sign in to comment.