Revert "phaser: cap phy data width to 64 temporarily"

This reverts commit 342b9e977e.
This commit is contained in:
Robert Jördens 2016-11-18 17:08:44 +01:00
parent 641f07119f
commit bcde26f990
1 changed files with 1 additions and 2 deletions

View File

@ -16,8 +16,7 @@ class Channel(_ChannelPHY):
_ChannelPHY.__init__(self, *args, **kwargs)
self.phys = []
for i in self.i:
rl = rtlink.Interface(rtlink.OInterface(
min(64, len(i.payload)))) # FIXME
rl = rtlink.Interface(rtlink.OInterface(len(i.payload)))
self.comb += [
i.stb.eq(rl.o.stb),
rl.o.busy.eq(~i.ack),