2020-10-08 17:05:04 +08:00
|
|
|
from nmigen import *
|
|
|
|
from nmigen.utils import *
|
2020-10-16 12:18:09 +08:00
|
|
|
from nmigen.asserts import *
|
2020-09-29 16:35:59 +08:00
|
|
|
|
2020-10-08 17:05:04 +08:00
|
|
|
from rtio.sed import layouts
|
|
|
|
|
|
|
|
__all__ = ["latency", "OutputNetwork"]
|
|
|
|
|
|
|
|
# Based on: https://github.com/Bekbolatov/SortingNetworks/blob/master/src/main/js/gr.js
|
|
|
|
def boms_get_partner(n, l, p):
|
|
|
|
if p == 1:
|
|
|
|
return n ^ (1 << (l - 1))
|
|
|
|
scale = 1 << (l - p)
|
|
|
|
box = 1 << p
|
|
|
|
sn = n//scale - n//scale//box*box
|
|
|
|
if sn == 0 or sn == (box - 1):
|
|
|
|
return n
|
|
|
|
if (sn % 2) == 0:
|
|
|
|
return n - scale
|
|
|
|
return n + scale
|
|
|
|
|
|
|
|
def boms_steps_pairs(lane_count):
|
|
|
|
d = log2_int(lane_count)
|
|
|
|
steps = []
|
|
|
|
for l in range(1, d+1):
|
|
|
|
for p in range(1, l+1):
|
|
|
|
pairs = []
|
|
|
|
for n in range(2**d):
|
|
|
|
partner = boms_get_partner(n, l, p)
|
|
|
|
if partner != n:
|
|
|
|
if partner > n:
|
|
|
|
pair = (n, partner)
|
|
|
|
else:
|
|
|
|
pair = (partner, n)
|
|
|
|
if pair not in pairs:
|
|
|
|
pairs.append(pair)
|
|
|
|
steps.append(pairs)
|
|
|
|
return steps
|
|
|
|
|
|
|
|
def latency(lane_count):
|
|
|
|
d = log2_int(lane_count)
|
|
|
|
return sum(l for l in range(1, d+1))
|
|
|
|
|
|
|
|
def cmp_wrap(a, b):
|
|
|
|
return Mux((a[-2] == a[-1]) & (b[-2] == b[-1]) & (a[-1] != b[-1]), a[-1], a < b)
|
|
|
|
|
|
|
|
class OutputNetwork(Elaboratable):
|
2020-10-16 12:18:09 +08:00
|
|
|
def __init__(self, lane_count, seqn_width, layout_payload, *, fv_mode=False):
|
2020-10-23 14:57:29 +08:00
|
|
|
self.lane_count = lane_count
|
|
|
|
self.seqn_width = seqn_width
|
|
|
|
self.layout_payload = layout_payload
|
|
|
|
self.fv_mode = fv_mode
|
|
|
|
|
|
|
|
self.steps = boms_steps_pairs(lane_count)
|
|
|
|
self.network = [[Record(layouts.output_network_node(seqn_width, layout_payload)) for _ in range(lane_count)] for _ in range(len(self.steps) + 1)]
|
|
|
|
for i in range(1, len(self.steps) + 1):
|
|
|
|
for rec in self.network[i]:
|
|
|
|
rec.seqn.reset_less = True
|
|
|
|
rec.replace_occured.reset_less = True
|
|
|
|
rec.nondata_replace_occured.reset_less = True
|
|
|
|
for field, _ in layout_payload:
|
|
|
|
getattr(rec.payload, field).reset_less = True
|
|
|
|
self.input = self.network[0]
|
|
|
|
self.output = self.network[-1]
|
2020-10-16 12:18:09 +08:00
|
|
|
|
2020-10-23 14:57:29 +08:00
|
|
|
def elaborate(self, platform):
|
|
|
|
m = Module()
|
2020-10-08 17:05:04 +08:00
|
|
|
|
2020-10-23 14:57:29 +08:00
|
|
|
for i in range(len(self.steps)):
|
|
|
|
for node1, node2 in self.steps[i]:
|
2020-10-08 17:05:04 +08:00
|
|
|
nondata_difference = Signal()
|
2020-10-23 14:57:29 +08:00
|
|
|
for field, _ in self.layout_payload:
|
|
|
|
if field != 'data':
|
|
|
|
f1 = getattr(self.network[i][node1].payload, field)
|
|
|
|
f2 = getattr(self.network[i][node2].payload, field)
|
2020-10-08 17:05:04 +08:00
|
|
|
with m.If(f1 != f2):
|
|
|
|
m.d.comb += nondata_difference.eq(1)
|
|
|
|
|
2020-10-23 14:57:29 +08:00
|
|
|
k1 = Cat(self.network[i][node1].payload.channel, ~self.network[i][node1].valid)
|
|
|
|
k2 = Cat(self.network[i][node2].payload.channel, ~self.network[i][node2].valid)
|
2020-10-08 17:05:04 +08:00
|
|
|
with m.If(k1 == k2):
|
2020-10-23 14:57:29 +08:00
|
|
|
with m.If(cmp_wrap(self.network[i][node1].seqn, self.network[i][node2].seqn)):
|
|
|
|
m.d.sync += self.network[i + 1][node1].eq(self.network[i][node2])
|
|
|
|
m.d.sync += self.network[i + 1][node2].eq(self.network[i][node1])
|
2020-10-08 17:05:04 +08:00
|
|
|
with m.Else():
|
2020-10-23 14:57:29 +08:00
|
|
|
m.d.sync += self.network[i + 1][node1].eq(self.network[i][node1])
|
|
|
|
m.d.sync += self.network[i + 1][node2].eq(self.network[i][node2])
|
|
|
|
m.d.sync += self.network[i + 1][node1].replace_occured.eq(1)
|
|
|
|
m.d.sync += self.network[i + 1][node1].nondata_replace_occured.eq(nondata_difference)
|
|
|
|
m.d.sync += self.network[i + 1][node2].valid.eq(0)
|
2020-10-08 17:05:04 +08:00
|
|
|
with m.Elif(k1 < k2):
|
2020-10-23 14:57:29 +08:00
|
|
|
m.d.sync += self.network[i + 1][node1].eq(self.network[i][node1])
|
|
|
|
m.d.sync += self.network[i + 1][node2].eq(self.network[i][node2])
|
2020-10-08 17:05:04 +08:00
|
|
|
with m.Else():
|
2020-10-23 14:57:29 +08:00
|
|
|
m.d.sync += self.network[i + 1][node1].eq(self.network[i][node2])
|
|
|
|
m.d.sync += self.network[i + 1][node2].eq(self.network[i][node1])
|
|
|
|
|
|
|
|
unchanged = list(range(self.lane_count))
|
|
|
|
for node1, node2 in self.steps[i]:
|
2020-10-08 17:05:04 +08:00
|
|
|
unchanged.remove(node1)
|
|
|
|
unchanged.remove(node2)
|
|
|
|
for node in unchanged:
|
2020-10-23 14:57:29 +08:00
|
|
|
m.d.sync += self.network[i + 1][node].eq(self.network[i][node])
|
2020-10-08 17:05:04 +08:00
|
|
|
|
2020-10-23 14:57:29 +08:00
|
|
|
if self.fv_mode:
|
|
|
|
# Model arbitrary inputs for network nodes
|
|
|
|
for i in range(self.lane_count):
|
|
|
|
m.d.comb += self.input[i].valid.eq(1)
|
|
|
|
m.d.comb += self.input[i].seqn.eq(AnySeq(self.seqn_width))
|
|
|
|
m.d.comb += self.input[i].replace_occured.eq(0)
|
|
|
|
m.d.comb += self.input[i].nondata_replace_occured.eq(0)
|
|
|
|
for field, width in self.layout_payload:
|
|
|
|
m.d.comb += getattr(self.input[i].payload, field).eq(AnySeq(width))
|
2020-10-16 12:18:09 +08:00
|
|
|
|
2020-10-21 12:40:16 +08:00
|
|
|
# Indicator of when inputs from the first clock cycle make it
|
|
|
|
# through the sorting network
|
2020-10-23 14:57:29 +08:00
|
|
|
network_latency = latency(self.lane_count)
|
2020-10-21 12:40:16 +08:00
|
|
|
counter = Signal(range(network_latency + 1))
|
|
|
|
m.d.sync += counter.eq(counter + 1)
|
|
|
|
with m.If(counter == network_latency):
|
|
|
|
m.d.sync += counter.eq(counter)
|
|
|
|
f_output_valid = Signal()
|
|
|
|
m.d.comb += f_output_valid.eq(counter == network_latency)
|
|
|
|
|
|
|
|
with m.If(f_output_valid):
|
|
|
|
replacement_occurred = Signal()
|
|
|
|
for node in self.output:
|
|
|
|
with m.If(node.replace_occured):
|
|
|
|
m.d.comb += replacement_occurred.eq(1)
|
2020-10-22 12:53:55 +08:00
|
|
|
channels_unique = Signal(reset=1)
|
2020-10-22 10:56:59 +08:00
|
|
|
for node1 in range(len(self.input)):
|
|
|
|
for node2 in range(node1):
|
2020-10-22 12:53:55 +08:00
|
|
|
k1 = Past(self.input[node1].payload.channel, clocks=network_latency)
|
|
|
|
k2 = Past(self.input[node2].payload.channel, clocks=network_latency)
|
2020-10-22 10:56:59 +08:00
|
|
|
with m.If(k1 == k2):
|
2020-10-22 12:53:55 +08:00
|
|
|
m.d.comb += channels_unique.eq(0)
|
2020-10-22 10:56:59 +08:00
|
|
|
# If there are no replacements then:
|
2020-10-23 14:57:29 +08:00
|
|
|
# - Channel numbers are unique
|
2020-10-22 12:53:55 +08:00
|
|
|
# - All outputs are valid
|
|
|
|
# - All inputs make it through the sorting network
|
2020-10-21 12:40:16 +08:00
|
|
|
with m.If(~replacement_occurred):
|
2020-10-22 12:53:55 +08:00
|
|
|
m.d.comb += Assert(channels_unique)
|
|
|
|
for node in self.output:
|
|
|
|
m.d.comb += Assert(node.valid)
|
2020-10-21 14:03:35 +08:00
|
|
|
for input_node in self.input:
|
|
|
|
appeared = Signal()
|
|
|
|
for output_node in self.output:
|
|
|
|
match = Signal(reset=1)
|
|
|
|
with m.If(Past(input_node.valid, clocks=network_latency) != output_node.valid):
|
|
|
|
m.d.comb += match.eq(0)
|
|
|
|
with m.If(Past(input_node.seqn, clocks=network_latency) != output_node.seqn):
|
|
|
|
m.d.comb += match.eq(0)
|
|
|
|
with m.If(Past(input_node.replace_occured, clocks=network_latency) != output_node.replace_occured):
|
|
|
|
m.d.comb += match.eq(0)
|
|
|
|
with m.If(Past(input_node.nondata_replace_occured, clocks=network_latency) != output_node.nondata_replace_occured):
|
|
|
|
m.d.comb += match.eq(0)
|
2020-10-23 14:57:29 +08:00
|
|
|
for field, _ in self.layout_payload:
|
2020-10-21 14:03:35 +08:00
|
|
|
with m.If(Past(getattr(input_node.payload, field), clocks=network_latency) != getattr(output_node.payload, field)):
|
|
|
|
m.d.comb += match.eq(0)
|
|
|
|
with m.If(match):
|
|
|
|
m.d.comb += appeared.eq(1)
|
|
|
|
m.d.comb += Assert(appeared)
|
2020-10-22 12:53:55 +08:00
|
|
|
# Otherwise, if there are replacements:
|
2020-10-23 15:44:43 +08:00
|
|
|
# - Channel numbers are not unique
|
2020-10-22 12:53:55 +08:00
|
|
|
# - Not all outputs are valid
|
2020-10-22 13:32:12 +08:00
|
|
|
# - All channel numbers in the input appear exactly once as a
|
2020-10-22 12:53:55 +08:00
|
|
|
# valid output
|
2020-10-23 10:31:56 +08:00
|
|
|
# - All valid outputs match an input modulo accounting
|
|
|
|
# information
|
2020-10-22 12:53:55 +08:00
|
|
|
with m.Else():
|
|
|
|
m.d.comb += Assert(~channels_unique)
|
|
|
|
all_valid = Signal(reset=1)
|
|
|
|
for node in self.output:
|
|
|
|
with m.If(~node.valid):
|
|
|
|
m.d.comb += all_valid.eq(0)
|
|
|
|
m.d.comb += Assert(~all_valid)
|
|
|
|
for input_node in self.input:
|
2020-10-22 13:32:12 +08:00
|
|
|
input_channel_valid_once = Const(0)
|
|
|
|
for node1 in range(len(self.output)):
|
|
|
|
accum = (Past(input_node.payload.channel, clocks=network_latency) == self.output[node1].payload.channel) & self.output[node1].valid
|
|
|
|
for node2 in range(len(self.output)):
|
|
|
|
if node1 != node2:
|
|
|
|
accum = accum & ((Past(input_node.payload.channel, clocks=network_latency) != self.output[node2].payload.channel) | ~self.output[node2].valid)
|
|
|
|
input_channel_valid_once = input_channel_valid_once | accum
|
|
|
|
m.d.comb += Assert(input_channel_valid_once)
|
2020-10-23 10:31:56 +08:00
|
|
|
for output_node in self.output:
|
|
|
|
with m.If(output_node.valid):
|
|
|
|
found_input = Signal()
|
|
|
|
for input_node in self.input:
|
|
|
|
match = Signal(reset=1)
|
|
|
|
with m.If(Past(input_node.seqn, clocks=network_latency) != output_node.seqn):
|
|
|
|
m.d.comb += match.eq(0)
|
2020-10-23 14:57:29 +08:00
|
|
|
for field, _ in self.layout_payload:
|
2020-10-23 10:31:56 +08:00
|
|
|
with m.If(Past(getattr(input_node.payload, field), clocks=network_latency) != getattr(output_node.payload, field)):
|
|
|
|
m.d.comb += match.eq(0)
|
|
|
|
with m.If(match):
|
|
|
|
m.d.comb += found_input.eq(1)
|
|
|
|
m.d.comb += Assert(found_input)
|
2020-10-21 13:09:54 +08:00
|
|
|
|
2020-10-23 14:57:29 +08:00
|
|
|
return m
|