forked from M-Labs/artiq
Revert "phaser: cap phy data width to 64 temporarily"
This reverts commit 342b9e977e
.
This commit is contained in:
parent
641f07119f
commit
bcde26f990
|
@ -16,8 +16,7 @@ class Channel(_ChannelPHY):
|
||||||
_ChannelPHY.__init__(self, *args, **kwargs)
|
_ChannelPHY.__init__(self, *args, **kwargs)
|
||||||
self.phys = []
|
self.phys = []
|
||||||
for i in self.i:
|
for i in self.i:
|
||||||
rl = rtlink.Interface(rtlink.OInterface(
|
rl = rtlink.Interface(rtlink.OInterface(len(i.payload)))
|
||||||
min(64, len(i.payload)))) # FIXME
|
|
||||||
self.comb += [
|
self.comb += [
|
||||||
i.stb.eq(rl.o.stb),
|
i.stb.eq(rl.o.stb),
|
||||||
rl.o.busy.eq(~i.ack),
|
rl.o.busy.eq(~i.ack),
|
||||||
|
|
Loading…
Reference in New Issue